private function ParseException::updateRepr

4 calls to ParseException::updateRepr()
ParseException::setParsedFile in drupal/core/vendor/symfony/yaml/Symfony/Component/Yaml/Exception/ParseException.php
Sets the filename where the error occurred.
ParseException::setParsedLine in drupal/core/vendor/symfony/yaml/Symfony/Component/Yaml/Exception/ParseException.php
Sets the line where the error occurred.
ParseException::setSnippet in drupal/core/vendor/symfony/yaml/Symfony/Component/Yaml/Exception/ParseException.php
Sets the snippet of code near the error.
ParseException::__construct in drupal/core/vendor/symfony/yaml/Symfony/Component/Yaml/Exception/ParseException.php
Constructor.

File

drupal/core/vendor/symfony/yaml/Symfony/Component/Yaml/Exception/ParseException.php, line 117

Class

ParseException
Exception class thrown when an error occurs during parsing.

Namespace

Symfony\Component\Yaml\Exception

Code

private function updateRepr() {
  $this->message = $this->rawMessage;
  $dot = false;
  if ('.' === substr($this->message, -1)) {
    $this->message = substr($this->message, 0, -1);
    $dot = true;
  }
  if (null !== $this->parsedFile) {
    $this->message .= sprintf(' in %s', json_encode($this->parsedFile));
  }
  if ($this->parsedLine >= 0) {
    $this->message .= sprintf(' at line %d', $this->parsedLine);
  }
  if ($this->snippet) {
    $this->message .= sprintf(' (near "%s")', $this->snippet);
  }
  if ($dot) {
    $this->message .= '.';
  }
}