You are here

public function XPathExpr::addStarPrefix in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/css-selector/XPath/XPathExpr.php \Symfony\Component\CssSelector\XPath\XPathExpr::addStarPrefix()

Return value

XPathExpr

1 call to XPathExpr::addStarPrefix()
XPathExpr::__construct in vendor/symfony/css-selector/XPath/XPathExpr.php

File

vendor/symfony/css-selector/XPath/XPathExpr.php, line 100

Class

XPathExpr
XPath expression translator interface.

Namespace

Symfony\Component\CssSelector\XPath

Code

public function addStarPrefix() {
  $this->path .= '*/';
  return $this;
}