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

NegationNode::__constructpublicWC 1.0

Метод класса: NegationNode{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$NegationNode = new NegationNode();
$NegationNode->__construct( $selector, $subSelector );
$selector(NodeInterface) (обязательный)
.
$subSelector(NodeInterface) (обязательный)
.

Код NegationNode::__construct() WC 10.5.1

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