Automattic\WooCommerce\Vendor\Symfony\Component\CssSelector\Node

CombinedSelectorNode::__toStringpublicWC 1.0

Method of the class: CombinedSelectorNode{}

No Hooks.

Returns

null. Nothing (null).

Usage

$CombinedSelectorNode = new CombinedSelectorNode();
$CombinedSelectorNode->__toString(): string;

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);
}