Home
last modified time | relevance | path

Searched refs:parsedLine (Results 1 – 1 of 1) sorted by relevance

/template/strap/vendor/symfony/yaml/Exception/
H A DParseException.php22 private $parsedLine; variable in Symfony\\Component\\Yaml\\Exception\\ParseException
28 * @param int $parsedLine The line where the error occurred
32 …public function __construct(string $message, int $parsedLine = -1, string $snippet = null, string … argument
35 $this->parsedLine = $parsedLine;
93 return $this->parsedLine;
99 public function setParsedLine(int $parsedLine) argument
101 $this->parsedLine = $parsedLine;
120 if ($this->parsedLine >= 0) {
121 $this->message .= sprintf(' at line %d', $this->parsedLine);