JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "NullSnippetProvider.php"

Full Path: /var/www/laravel_filter/vendor/spatie/backtrace/src/CodeSnippets/NullSnippetProvider.php
File size: 393 bytes
MIME-type: text/x-php
Charset: utf-8

<?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";
    }
}