Automattic\WooCommerce\Vendor\Symfony\Component\CssSelector\Node
ElementNode::__toString
Method of the class: ElementNode{}
No Hooks.
Returns
null. Nothing (null).
Usage
$ElementNode = new ElementNode(); $ElementNode->__toString(): string;
ElementNode::__toString() ElementNode:: toString code WC 10.8.1
public function __toString(): string
{
$element = $this->element ?: '*';
return sprintf('%s[%s]', $this->getNodeName(), $this->namespace ? $this->namespace.'|'.$element : $element);
}