public function QueryPath::appendTo in QueryPath 6
Same name and namespace in other branches
- 7.3 QueryPath/QueryPath.php \QueryPath::appendTo()
- 7.2 QueryPath/QueryPath.php \QueryPath::appendTo()
File
- QueryPath/
QueryPath.php, line 665
Class
Code
public function appendTo(QueryPath $dest) {
foreach ($this->matches as $m) {
$dest
->append($m);
}
return $this;
}