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