Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
peripherad
/
vendor
/
spatie
/
ignition
/
src
/
Contracts
:
HasSolutionsForThrowable.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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; }