OutputElementInterface.php in Extensible BBCode 8.3
Same filename and directory in other branches
Namespace
Drupal\xbbcode\Parser\TreeFile
src/Parser/Tree/OutputElementInterface.phpView source
<?php
namespace Drupal\xbbcode\Parser\Tree;
/**
* An output element must be convertible to a string.
*/
interface OutputElementInterface {
/**
* Convert to string.
*
* @return string
* The string value.
*/
public function __toString() : string;
}
Interfaces
Name | Description |
---|---|
OutputElementInterface | An output element must be convertible to a string. |