Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
22 | 3 | public function __invoke(ContainerInterface $container): MediaToolsService |
|
23 | { |
||
24 | 3 | return new MediaToolsService( |
|
25 | 3 | $container->get(VideoInfoReaderInterface::class), |
|
26 | 3 | $container->get(VideoConverterInterface::class), |
|
27 | 3 | $container->get(VideoThumbGeneratorInterface::class), |
|
28 | 3 | $container->get(VideoAnalyzerInterface::class) |
|
29 | ); |
||
32 |