You are here

public function QueryPath::appendTo in QueryPath 6

Same name and namespace in other branches
  1. 7.3 QueryPath/QueryPath.php \QueryPath::appendTo()
  2. 7.2 QueryPath/QueryPath.php \QueryPath::appendTo()

File

QueryPath/QueryPath.php, line 665

Class

QueryPath

Code

public function appendTo(QueryPath $dest) {
  foreach ($this->matches as $m) {
    $dest
      ->append($m);
  }
  return $this;
}