File "HasSolutionsForThrowable.php"

Full Path: /home/fundopuh/trader.fxex.org/vendor/facade/ignition-contracts/src/HasSolutionsForThrowable.php
File size: 269 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Facade\IgnitionContracts;

use Throwable;

interface HasSolutionsForThrowable
{
    public function canSolve(Throwable $throwable): bool;

    /** \Facade\IgnitionContracts\Solution[] */
    public function getSolutions(Throwable $throwable): array;
}