JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour
<?php namespace Spatie\Backtrace\CodeSnippets; class NullSnippetProvider implements SnippetProvider { public function numberOfLines(): int { return 1; } public function getLine(?int $lineNumber = null): string { return $this->getNextLine(); } public function getNextLine(): string { return "File not found for code snippet"; } }