File "HasSolutionsForThrowable.php"
Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/spatie/ignition/src/Contracts/HasSolutionsForThrowable.php
File size: 338 bytes
MIME-type: text/x-php
Charset: utf-8
<?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;
}