You are here

OutputElementInterface.php in Extensible BBCode 4.0.x

Same filename and directory in other branches
  1. 8.3 src/Parser/Tree/OutputElementInterface.php

File

src/Parser/Tree/OutputElementInterface.php
View 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

Namesort descending Description
OutputElementInterface An output element must be convertible to a string.