Current Path : /home/lentoinv/api.lentoria.com/vendor/spatie/ignition/src/Contracts/ |
Current File : //home/lentoinv/api.lentoria.com/vendor/spatie/ignition/src/Contracts/HasSolutionsForThrowable.php |
<?php namespace Spatie\Ignition\Contracts; use Throwable; interface HasSolutionsForThrowable { public function canSolve(Throwable $throwable): bool; /** @return array<int, \Spatie\Ignition\Contracts\Solution> */ public function getSolutions(Throwable $throwable): array; }