File "SolutionProviderRepository.php"
Full Path: /home/fundopuh/trader.fxex.org/vendor/facade/ignition-contracts/src/SolutionProviderRepository.php
File size: 525 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Facade\IgnitionContracts;
use Throwable;
interface SolutionProviderRepository
{
public function registerSolutionProvider(string $solutionProviderClass): self;
public function registerSolutionProviders(array $solutionProviderClasses): self;
/**
* @param Throwable $throwable
* @return \Facade\IgnitionContracts\Solution[]
*/
public function getSolutionsForThrowable(Throwable $throwable): array;
public function getSolutionForClass(string $solutionClass): ?Solution;
}