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