You are here

interface OutputElementInterface in Extensible BBCode 4.0.x

Same name and namespace in other branches
  1. 8.3 src/Parser/Tree/OutputElementInterface.php \Drupal\xbbcode\Parser\Tree\OutputElementInterface

An output element must be convertible to a string.

Hierarchy

Expanded class hierarchy of OutputElementInterface

All classes that implement OutputElementInterface

6 files declare their use of OutputElementInterface
PreparedTagElement.php in src/PreparedTagElement.php
TagPluginBase.php in src/Plugin/TagPluginBase.php
TagPluginInterface.php in src/Plugin/TagPluginInterface.php
TagProcessorBase.php in src/Parser/Processor/TagProcessorBase.php
TagProcessorInterface.php in src/Parser/Processor/TagProcessorInterface.php

... See full list

File

src/Parser/Tree/OutputElementInterface.php, line 8

Namespace

Drupal\xbbcode\Parser\Tree
View source
interface OutputElementInterface {

  /**
   * Convert to string.
   *
   * @return string
   *   The string value.
   */
  public function __toString() : string;

}

Members