Files
trf_certest/vendor/spatie/laravel-ignition/src/Commands/stubs/solution-provider.stub
T
2025-03-28 08:52:46 +01:00

20 lines
354 B
Plaintext

<?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 [];
}
}