Files
apimacro/vendor/facade/ignition-contracts/src/HasSolutionsForThrowable.php
2024-08-13 13:44:16 +00:00

14 lines
269 B
PHP
Executable File

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