class CombinedSelectorNode
Represents a combined 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\CombinedSelectorNode extends \Symfony\Component\CssSelector\Node\AbstractNode
Expanded class hierarchy of CombinedSelectorNode
See also
https://github.com/SimonSapin/cssselect.
File
-
vendor/
symfony/ css-selector/ Node/ CombinedSelectorNode.php, line 24
Namespace
Symfony\Component\CssSelector\NodeView source
class CombinedSelectorNode extends AbstractNode {
public function __construct(NodeInterface $selector, string $combinator, NodeInterface $subSelector) {
}
public function getSelector() : NodeInterface {
return $this->selector;
}
public function getCombinator() : string {
return $this->combinator;
}
public function getSubSelector() : NodeInterface {
return $this->subSelector;
}
public function getSpecificity() : Specificity {
return $this->selector
->getSpecificity()
->plus($this->subSelector
->getSpecificity());
}
public function __toString() : string {
$combinator = ' ' === $this->combinator ? '<followed>' : $this->combinator;
return \sprintf('%s[%s %s %s]', $this->getNodeName(), $this->selector, $combinator, $this->subSelector);
}
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overriden Title |
---|---|---|---|---|
AbstractNode::$nodeName | private | property | ||
AbstractNode::getNodeName | public | function | Overrides NodeInterface::getNodeName | |
CombinedSelectorNode::getCombinator | public | function | ||
CombinedSelectorNode::getSelector | public | function | ||
CombinedSelectorNode::getSpecificity | public | function | Overrides NodeInterface::getSpecificity | |
CombinedSelectorNode::getSubSelector | public | function | ||
CombinedSelectorNode::__construct | public | function | ||
CombinedSelectorNode::__toString | public | function |