Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
16 | public function __invoke(ContainerInterface $container): MakeMiddleware |
||
17 | { |
||
18 | return new MakeMiddleware( |
||
19 | $container->get(GetClassNameFromFQCN::class), |
||
20 | $container->get(GetNamespaceFromFQCN::class), |
||
21 | $container->get(GetRealPathFromNamespace::class), |
||
22 | $container->get(CreateClassFile::class), |
||
23 | (array)$container->get('config') |
||
24 | ); |
||
27 |