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

NegationNode::__toStringpublicWC 1.0

Method of the class: NegationNode{}

No Hooks.

Returns

null. Nothing (null).

Usage

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

NegationNode::__toString() code WC 10.5.0

public function __toString(): string
{
    return sprintf('%s[%s:not(%s)]', $this->getNodeName(), $this->selector, $this->subSelector);
}