1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47:
<?php
namespace SDom\SelectorMatcher;
use SDom\Node\Element;
use Symfony\Component\CssSelector\Node\HashNode;
use Symfony\Component\CssSelector\Node\NodeInterface;
trait HashNodeTrait
{
protected function matchHashNode(HashNode $token, Element $node, Element $effectiveRoot = null): bool
{
if (!$node->hasAttribute('id')) {
return false;
}
if ($token->getId() !== $node->getAttribute('id')) {
return false;
}
return $this->match($token->getSelector(), $node, $effectiveRoot);
}
abstract public function match(NodeInterface $token, Element $node, Element $effectiveRoot = null): bool;
}