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