* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace HtmlSanitizer\Extension\Basic\NodeVisitor; use HtmlSanitizer\Model\Cursor; use HtmlSanitizer\Node\NodeInterface; use HtmlSanitizer\Extension\Basic\Node\StrongNode; use HtmlSanitizer\Visitor\AbstractNodeVisitor; use HtmlSanitizer\Visitor\HasChildrenNodeVisitorTrait; use HtmlSanitizer\Visitor\NamedNodeVisitorInterface; /** * @author Titouan Galopin * * @final */ class StrongNodeVisitor extends AbstractNodeVisitor implements NamedNodeVisitorInterface { use HasChildrenNodeVisitorTrait; protected function getDomNodeName(): string { return 'strong'; } public function getSupportedNodeNames(): array { return ['strong', 'b']; } public function supports(\DOMNode $domNode, Cursor $cursor): bool { return 'strong' === $domNode->nodeName || 'b' === $domNode->nodeName; } protected function createNode(\DOMNode $domNode, Cursor $cursor): NodeInterface { return new StrongNode($cursor->node); } }