Files
wonderful-weather/vendor/facade/ignition-contracts/src/HasSolutionsForThrowable.php
foobar 27c1969aaa init
2022-08-21 21:39:06 +02:00

14 lines
269 B
PHP

<?php
namespace Facade\IgnitionContracts;
use Throwable;
interface HasSolutionsForThrowable
{
public function canSolve(Throwable $throwable): bool;
/** \Facade\IgnitionContracts\Solution[] */
public function getSolutions(Throwable $throwable): array;
}