class NegationNode
Represents a "<selector>:not(<identifier>)" node.
This component is a port of the Python cssselect library, which is copyright Ian Bicking, @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>
@internal
Hierarchy
- class \Symfony\Component\CssSelector\Node\AbstractNode implements \Symfony\Component\CssSelector\Node\NodeInterface
- class \Symfony\Component\CssSelector\Node\NegationNode extends \Symfony\Component\CssSelector\Node\AbstractNode
Expanded class hierarchy of NegationNode
See also
https://github.com/SimonSapin/cssselect.
File
-
vendor/
symfony/ css-selector/ Node/ NegationNode.php, line 24
Namespace
Symfony\Component\CssSelector\NodeView source
class NegationNode extends AbstractNode {
public function __construct(NodeInterface $selector, NodeInterface $subSelector) {
}
public function getSelector() : NodeInterface {
return $this->selector;
}
public function getSubSelector() : NodeInterface {
return $this->subSelector;
}
public function getSpecificity() : Specificity {
return $this->selector
->getSpecificity()
->plus($this->subSelector
->getSpecificity());
}
public function __toString() : string {
return \sprintf('%s[%s:not(%s)]', $this->getNodeName(), $this->selector, $this->subSelector);
}
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overriden Title |
---|---|---|---|---|
AbstractNode::$nodeName | private | property | ||
AbstractNode::getNodeName | public | function | Overrides NodeInterface::getNodeName | |
NegationNode::getSelector | public | function | ||
NegationNode::getSpecificity | public | function | Overrides NodeInterface::getSpecificity | |
NegationNode::getSubSelector | public | function | ||
NegationNode::__construct | public | function | ||
NegationNode::__toString | public | function |