| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 14 | 1 | public function __invoke(ContainerInterface $container): GetFeatures |
|
| 15 | { |
||
| 16 | /** @var FeatureFinder $featureFinder */ |
||
| 17 | 1 | $featureFinder = $container->get(FeatureFinder::class); |
|
| 18 | /** @var ResponseFactoryInterface $responseFactory */ |
||
| 19 | 1 | $responseFactory = $container->get(ResponseFactoryInterface::class); |
|
| 20 | |||
| 21 | 1 | return self::create($featureFinder, $responseFactory); |
|
| 22 | } |
||
| 29 |