public function QueryPathCssEventHandler::anyElement in QueryPath 7.3
Same name and namespace in other branches
- 6 QueryPath/CssEventHandler.php \QueryPathCssEventHandler::anyElement()
- 7.2 QueryPath/CssEventHandler.php \QueryPathCssEventHandler::anyElement()
Overrides CssEventHandler::anyElement
File
- QueryPath/
CssEventHandler.php, line 170
Class
Code
public function anyElement() {
$found = new SplObjectStorage();
$matches = $this
->candidateList();
foreach ($matches as $item) {
$found
->attach($item);
}
$this->matches = $found;
$this->findAnyElement = FALSE;
}