12345678910111213141516171819202122232425262728293031 |
- <?php
- namespace Symfony\Component\CssSelector\Node;
- interface NodeInterface
- {
- public function getNodeName(): string;
- public function getSpecificity(): Specificity;
- public function __toString(): string;
- }
|