12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
- namespace Symfony\Component\CssSelector\Node;
- class SelectorNode extends AbstractNode
- {
- private $tree;
- private $pseudoElement;
- public function __construct(NodeInterface $tree, string $pseudoElement = null)
- {
- $this->tree = $tree;
- $this->pseudoElement = $pseudoElement ? strtolower($pseudoElement) : null;
- }
- public function getTree(): NodeInterface
- {
- return $this->tree;
- }
- public function getPseudoElement(): ?string
- {
- return $this->pseudoElement;
- }
-
- public function getSpecificity(): Specificity
- {
- return $this->tree->getSpecificity()->plus(new Specificity(0, 0, $this->pseudoElement ? 1 : 0));
- }
-
- public function __toString(): string
- {
- return sprintf('%s[%s%s]', $this->getNodeName(), $this->tree, $this->pseudoElement ? '::'.$this->pseudoElement : '');
- }
- }
|