You are here

public function CombinationExtension::translateIndirectAdjacent 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::translateIndirectAdjacent()

Parameters

XPathExpr $xpath:

XPathExpr $combinedXpath:

Return value

XPathExpr

File

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

Class

CombinationExtension
XPath expression translator combination extension.

Namespace

Symfony\Component\CssSelector\XPath\Extension

Code

public function translateIndirectAdjacent(XPathExpr $xpath, XPathExpr $combinedXpath) {
  return $xpath
    ->join('/following-sibling::', $combinedXpath);
}