mangadex/scripts/JBBCode/NodeVisitor.php

21 lines
371 B
PHP
Raw Normal View History

2021-03-14 17:31:55 -04:00
<?php
namespace JBBCode;
/**
* Defines an interface for a visitor to traverse the node graph.
*
* @author jbowens
* @since January 2013
*/
interface NodeVisitor
{
public function visitDocumentElement(DocumentElement $documentElement);
public function visitTextNode(TextNode $textNode);
public function visitElementNode(ElementNode $elementNode);
}