You are here

public function Twig_Error::appendMessage in Translation template extractor 7.3

1 call to Twig_Error::appendMessage()
Twig_Error_Syntax::addSuggestions in vendor/Twig/Error/Syntax.php
Tweaks the error message to include suggestions.

File

vendor/Twig/Error.php, line 158

Class

Twig_Error
Twig base exception.

Code

public function appendMessage($rawMessage) {
  $this->rawMessage .= $rawMessage;
  $this
    ->updateRepr();
}