You are here

private function ParseException::updateRepr in Lockr 7.3

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

File

vendor/symfony/yaml/Exception/ParseException.php, line 113

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, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE));
  }
  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 .= '.';
  }
}