Automattic\WooCommerce\Vendor\Symfony\Component\CssSelector\Node
NegationNode::__construct
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() NegationNode:: construct code WC 10.5.0
public function __construct(NodeInterface $selector, NodeInterface $subSelector)
{
$this->selector = $selector;
$this->subSelector = $subSelector;
}