Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
35 | 3 | public function getDependencies() : array |
|
36 | { |
||
37 | return [ |
||
38 | 2 | 'factories' => [ |
|
39 | 1 | Generator::class => GeneratorFactory::class, |
|
40 | Middleware\ApiSpecification::class => Middleware\ApiSpecificationFactory::class, |
||
41 | Middleware\SwaggerUIAssets::class => InvokableFactory::class, |
||
42 | Middleware\SwaggerUI::class => Middleware\SwaggerUIFactory::class, |
||
43 | ], |
||
44 | ]; |
||
45 | } |
||
46 | |||
62 |