public function QueryPath::getIterator in QueryPath 6
Same name and namespace in other branches
- 7.3 QueryPath/QueryPath.php \QueryPath::getIterator()
- 7.2 QueryPath/QueryPath.php \QueryPath::getIterator()
File
- QueryPath/
QueryPath.php, line 2054
Class
Code
public function getIterator() {
$i = new QueryPathIterator($this->matches);
$i->options = $this->options;
return $i;
}