public function NegationNode::__construct in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/css-selector/Node/NegationNode.php \Symfony\Component\CssSelector\Node\NegationNode::__construct()
Parameters
NodeInterface $selector:
NodeInterface $subSelector:
File
- vendor/
symfony/ css-selector/ Node/ NegationNode.php, line 38
Class
- NegationNode
- Represents a "<selector>:not(<identifier>)" node.
Namespace
Symfony\Component\CssSelector\NodeCode
public function __construct(NodeInterface $selector, NodeInterface $subSelector) {
$this->selector = $selector;
$this->subSelector = $subSelector;
}