1 | <?php |
||
25 | class IgnitionSolutionsRepository implements SolutionsRepository |
||
26 | { |
||
27 | /** |
||
28 | * Holds an instance of ignition solutions provider repository. |
||
29 | * |
||
30 | * @var \Facade\IgnitionContracts\SolutionProviderRepository |
||
31 | */ |
||
32 | protected $solutionProviderRepository; |
||
33 | |||
34 | /** |
||
35 | * IgnitionSolutionsRepository constructor. |
||
36 | */ |
||
37 | public function __construct(SolutionProviderRepository $solutionProviderRepository) |
||
41 | |||
42 | /** |
||
43 | * {@inheritdoc} |
||
44 | */ |
||
45 | public function getFromThrowable(Throwable $throwable): array |
||
49 | } |
||
50 |