public function QueryPathCssEventHandler::getMatches in QueryPath 6
Same name and namespace in other branches
- 7.3 QueryPath/CssEventHandler.php \QueryPathCssEventHandler::getMatches()
- 7.2 QueryPath/CssEventHandler.php \QueryPathCssEventHandler::getMatches()
File
- QueryPath/
CssEventHandler.php, line 77
Class
Code
public function getMatches() {
$result = new SplObjectStorage();
foreach ($this->alreadyMatched as $m) {
$result
->attach($m);
}
foreach ($this->matches as $m) {
$result
->attach($m);
}
return $result;
}