D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
dateitor
/
www
/
vendor
/
spatie
/
laravel-ignition
/
src
/
Commands
/
stubs
/
Filename :
solution-provider.stub
back
Copy
<?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 []; } }