/
home
/
sjslayjy
/
public_html
/
sag_latest
/
vendor
/
spatie
/
laravel-ignition
/
src
/
Commands
/
stubs
/
Upload File
HOME
<?php namespace DummyNamespace; use Spatie\ErrorSolutions\Contracts\HasSolutionsForThrowable; use Throwable; class DummyClass implements HasSolutionsForThrowable { public function canSolve(Throwable $throwable): bool { return false; } public function getSolutions(Throwable $throwable): array { return []; } }