You are here

public function CombinationExtension::translateDescendant in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/css-selector/XPath/Extension/CombinationExtension.php \Symfony\Component\CssSelector\XPath\Extension\CombinationExtension::translateDescendant()

Parameters

XPathExpr $xpath:

XPathExpr $combinedXpath:

Return value

XPathExpr

File

vendor/symfony/css-selector/XPath/Extension/CombinationExtension.php, line 45

Class

CombinationExtension
XPath expression translator combination extension.

Namespace

Symfony\Component\CssSelector\XPath\Extension

Code

public function translateDescendant(XPathExpr $xpath, XPathExpr $combinedXpath) {
  return $xpath
    ->join('/descendant-or-self::*/', $combinedXpath);
}