Returns the match at the given index
int $index Index:
array
\Exception
public function get($index) { $index = (int) $index; if (!isset($this->matches[$index])) { throw new \Exception("Invalid index {$index}"); } return $this->matches[$index]; }