Lines Matching defs:snippet
23 private $snippet;
29 * @param string|null $snippet The snippet of code near the problem
32 public function __construct(string $message, int $parsedLine = -1, string $snippet = null, string $parsedFile = null, \Throwable $previous = null)
36 $this->snippet = $snippet;
45 * Gets the snippet of code near the error.
51 return $this->snippet;
55 * Sets the snippet of code near the error.
57 public function setSnippet(string $snippet)
59 $this->snippet = $snippet;
124 if ($this->snippet) {
125 $this->message .= sprintf(' (near "%s")', $this->snippet);