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

CombinedSelectorNode::__constructpublicWC 1.0

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

Хуков нет.

Возвращает

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

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

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

Код CombinedSelectorNode::__construct() WC 10.5.0

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