vendor and env first commit
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace Spatie\ErrorSolutions\Contracts;
|
||||
|
||||
use Throwable;
|
||||
|
||||
/**
|
||||
* Interface used for SolutionProviders.
|
||||
*/
|
||||
interface HasSolutionsForThrowable
|
||||
{
|
||||
public function canSolve(Throwable $throwable): bool;
|
||||
|
||||
/** @return array<int, Solution> */
|
||||
public function getSolutions(Throwable $throwable): array;
|
||||
}
|
||||
Reference in New Issue
Block a user