/
home
/
sjslayjy
/
public_html
/
theweavenest
/
vendor
/
spatie
/
ignition
/
src
/
Contracts
/
Upload File
HOME
<?php namespace Spatie\Ignition\Contracts; use Throwable; /** * Interface used for SolutionProviders. */ interface HasSolutionsForThrowable { public function canSolve(Throwable $throwable): bool; /** @return array<int, \Spatie\Ignition\Contracts\Solution> */ public function getSolutions(Throwable $throwable): array; }