Automattic\WooCommerce\Vendor\Symfony\Component\CssSelector\Node
NegationNode::__construct
Метод класса: NegationNode{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$NegationNode = new NegationNode(); $NegationNode->__construct( $selector, $subSelector );
- $selector(NodeInterface) (обязательный)
- .
- $subSelector(NodeInterface) (обязательный)
- .
Код NegationNode::__construct() NegationNode:: construct WC 10.5.1
public function __construct(NodeInterface $selector, NodeInterface $subSelector)
{
$this->selector = $selector;
$this->subSelector = $subSelector;
}