Symfony\Component\CssSelector\Node
SelectorNode::__construct() public WC 1.0
{} Это метод класса: SelectorNode{}
Хуков нет.
Возвращает
Null. Ничего.
Использование
$SelectorNode = new SelectorNode(); $SelectorNode->__construct( $tree, $pseudoElement );
- $tree(Nodeчислоerface) (обязательный)
- -
- $pseudoElement(null/строка)
- -
Код SelectorNode::__construct() SelectorNode:: construct WC 5.0.0
public function __construct(NodeInterface $tree, $pseudoElement = null)
{
$this->tree = $tree;
$this->pseudoElement = $pseudoElement ? strtolower($pseudoElement) : null;
}