private function ParseException::updateRepr in Translation template extractor 6.3
Same name and namespace in other branches
- 7.3 vendor/Symfony/Component/Yaml/Exception/ParseException.php \Symfony\Component\Yaml\Exception\ParseException::updateRepr()
- 7.2 vendor/Symfony/Component/Yaml/Exception/ParseException.php \Symfony\Component\Yaml\Exception\ParseException::updateRepr()
4 calls to ParseException::updateRepr()
- ParseException::setParsedFile in vendor/
Symfony/ Component/ Yaml/ Exception/ ParseException.php - Sets the filename where the error occurred.
- ParseException::setParsedLine in vendor/
Symfony/ Component/ Yaml/ Exception/ ParseException.php - Sets the line where the error occurred.
- ParseException::setSnippet in vendor/
Symfony/ Component/ Yaml/ Exception/ ParseException.php - Sets the snippet of code near the error.
- ParseException::__construct in vendor/
Symfony/ Component/ Yaml/ Exception/ ParseException.php - Constructor.
File
- vendor/
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) {
$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 .= '.';
}
}