Merges the current object with the other given Matches objects
Matches[] $matchesArr Array of Matches to merge:
$this
public function merge($matchesArr) { foreach ($matchesArr as $matches) { foreach ($matches->getMatches() as $match) { $this->addMatch($match[0], $match[1]); } } return $this->unique(); }