File "SnippetProvider.php"
Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/spatie/backtrace/src/CodeSnippets/SnippetProvider.php
File size: 227 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Spatie\Backtrace\CodeSnippets;
interface SnippetProvider
{
public function numberOfLines(): int;
public function getLine(int $lineNumber = null): string;
public function getNextLine(): string;
}