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