private function ParseException::updateRepr in Plug 7
4 calls to ParseException::updateRepr()
- ParseException::setParsedFile in lib/
Symfony/ yaml/ Symfony/ Component/ Yaml/ Exception/ ParseException.php - Sets the filename where the error occurred.
- ParseException::setParsedLine in lib/
Symfony/ yaml/ Symfony/ Component/ Yaml/ Exception/ ParseException.php - Sets the line where the error occurred.
- ParseException::setSnippet in lib/
Symfony/ yaml/ Symfony/ Component/ Yaml/ Exception/ ParseException.php - Sets the snippet of code near the error.
- ParseException::__construct in lib/
Symfony/ yaml/ Symfony/ Component/ Yaml/ Exception/ ParseException.php - Constructor.
File
- lib/
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\ExceptionCode
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) {
if (PHP_VERSION_ID >= 50400) {
$jsonOptions = JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE;
}
else {
$jsonOptions = 0;
}
$this->message .= sprintf(' in %s', json_encode($this->parsedFile, $jsonOptions));
}
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 .= '.';
}
}