%PDF- %PDF-
Direktori : /data/www_bck/loslex_bck/test/vendor/spatie/backtrace/src/CodeSnippets/ |
Current File : //data/www_bck/loslex_bck/test/vendor/spatie/backtrace/src/CodeSnippets/NullSnippetProvider.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"; } }