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