You are here

public function TagProcessResult::__construct in Extensible BBCode 4.0.x

Same name and namespace in other branches
  1. 8.3 src/TagProcessResult.php \Drupal\xbbcode\TagProcessResult::__construct()

TagProcessResult constructor.

Parameters

string|null $processedText: Processed content.

File

src/TagProcessResult.php, line 26

Class

TagProcessResult
Represents the output of a tag processor in a tree.

Namespace

Drupal\xbbcode

Code

public function __construct(string $processedText = NULL) {
  $this->processedText = $processedText;
}