You are here

public function TextElement::__construct in Extensible BBCode 8.3

Same name and namespace in other branches
  1. 4.0.x src/Parser/Tree/TextElement.php \Drupal\xbbcode\Parser\Tree\TextElement::__construct()

TextElement constructor.

Parameters

string $text: The text.

File

src/Parser/Tree/TextElement.php, line 23

Class

TextElement
An element representing a text fragment.

Namespace

Drupal\xbbcode\Parser\Tree

Code

public function __construct($text) {
  $this
    ->setText($text);
}