| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | 16 | public function __invoke( |
|
| 20 | ContainerInterface $container, |
||
| 21 | $requestedName, |
||
| 22 | array $options = null |
||
| 23 | ): ResourceMiddlewareInterface { |
||
| 24 | 16 | return new BaseResourceMiddleware( |
|
| 25 | 16 | $container->get(EntityManagerRegistry::class), |
|
| 26 | 16 | $container->get(LoggerInterface::class), |
|
| 27 | 16 | DbConfiguration::class, |
|
| 28 | 16 | 'configuration' |
|
| 29 | ); |
||
| 30 | } |
||
| 31 | } |
||
| 32 |