File "solution-provider.stub"
Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/spatie/laravel-ignition/src/Commands/stubs/solution-provider.stub
File size: 348 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace DummyNamespace;
use Spatie\Ignition\Contracts\HasSolutionsForThrowable;
use Throwable;
class DummyClass implements HasSolutionsForThrowable
{
public function canSolve(Throwable $throwable): bool
{
return false;
}
public function getSolutions(Throwable $throwable): array
{
return [];
}
}