You are here

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

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

Set processed content.

Parameters

string $processedText: Processed content.

File

src/TagProcessResult.php, line 46

Class

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

Namespace

Drupal\xbbcode

Code

public function setProcessedText(string $processedText) : void {
  $this->processedText = $processedText;
}