Automattic\WooCommerce\Vendor\Symfony\Component\CssSelector\XPath\Extension

PseudoClassExtension::translateFirstChildpublicWC 1.0

Method of the class: PseudoClassExtension{}

No Hooks.

Returns

null. Nothing (null).

Usage

$PseudoClassExtension = new PseudoClassExtension();
$PseudoClassExtension->translateFirstChild( $xpath ): XPathExpr;
$xpath(XPathExpr) (required)
.

PseudoClassExtension::translateFirstChild() code WC 10.5.0

public function translateFirstChild(XPathExpr $xpath): XPathExpr
{
    return $xpath
        ->addStarPrefix()
        ->addNameTest()
        ->addCondition('position() = 1');
}