ElementInterface.php in Extensible BBCode 8.3
Same filename and directory in other branches
Namespace
Drupal\xbbcode\Parser\TreeFile
src/Parser/Tree/ElementInterface.phpView source
<?php
namespace Drupal\xbbcode\Parser\Tree;
/**
* An element in the parser tree.
*/
interface ElementInterface {
/**
* Render this element to a string.
*
* @return string|\Drupal\xbbcode\Parser\Tree\OutputElementInterface
* The rendered output.
*/
public function render();
}
Interfaces
Name | Description |
---|---|
ElementInterface | An element in the parser tree. |