| Conditions | 3 |
| Paths | 2 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 3.7898 |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | 1 | public function __invoke(ContainerInterface $container): FFProbeConfig |
|
| 16 | { |
||
| 17 | 1 | $key = 'ffprobe.binary'; |
|
| 18 | 1 | $config = $container->get('config')['soluble-mediatools'] ?? []; |
|
| 19 | 1 | if (!isset($config[$key]) || trim((string) $config[$key]) === '') { |
|
| 20 | throw new InvalidConfigException( |
||
| 21 | sprintf( |
||
| 22 | 'The [\'%s\'] value is missing in config [\'soluble-mediatools\']', |
||
| 23 | $key |
||
| 24 | ) |
||
| 25 | ); |
||
| 26 | } |
||
| 27 | |||
| 28 | 1 | return new FFProbeConfig($config[$key]); |
|
| 29 | } |
||
| 31 |