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