%PDF- %PDF-
Direktori : /var/www/html/hrsys/api/vendor/facade/ignition-contracts/src/ |
Current File : /var/www/html/hrsys/api/vendor/facade/ignition-contracts/src/SolutionProviderRepository.php |
<?php namespace Facade\IgnitionContracts; use Throwable; interface SolutionProviderRepository { public function registerSolutionProvider(string $solutionProviderClass): self; public function registerSolutionProviders(array $solutionProviderClasses): self; /** * @param Throwable $throwable * @return HasSolutionsForThrowable[] */ public function getSolutionsForThrowable(Throwable $throwable): array; public function getSolutionForClass(string $solutionClass): ?Solution; }