Files
apimacro/vendor/facade/ignition-contracts/src/HasSolutionsForThrowable.php

14 lines
269 B
PHP
Raw Normal View History

2024-05-07 12:17:25 +02:00
<?php
namespace Facade\IgnitionContracts;
use Throwable;
interface HasSolutionsForThrowable
{
public function canSolve(Throwable $throwable): bool;
/** \Facade\IgnitionContracts\Solution[] */
public function getSolutions(Throwable $throwable): array;
}