22 lines
392 B
PHP
22 lines
392 B
PHP
<?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";
|
|
}
|
|
}
|