Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/vendor/theseer/../egulias/../egulias/../brick/../composer/../composer/semver/../../league/../guzzlehttp/../fakerphp/./../nette/schema/./../../spatie/ignition/src/./Contracts
الملفات الموجودة في هذا الـ Path:
.
..
BaseSolution.php
ConfigManager.php
HasSolutionsForThrowable.php
ProvidesSolution.php
RunnableSolution.php
Solution.php
SolutionProviderRepository.php

مشاهدة ملف: HasSolutionsForThrowable.php

<?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;
}