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

NegationNode::__constructpublicWC 1.0

Method of the class: NegationNode{}

No Hooks.

Returns

null. Nothing (null).

Usage

$NegationNode = new NegationNode();
$NegationNode->__construct( $selector, $subSelector );
$selector(NodeInterface) (required)
.
$subSelector(NodeInterface) (required)
.

NegationNode::__construct() code WC 10.5.0

public function __construct(NodeInterface $selector, NodeInterface $subSelector)
{
    $this->selector = $selector;
    $this->subSelector = $subSelector;
}