| Total Complexity | 4 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class FFProbeConfig |
||
| 10 | { |
||
| 11 | /** @var string */ |
||
| 12 | protected $binary; |
||
| 13 | |||
| 14 | /** @var FFprobeProcess */ |
||
| 15 | protected $process; |
||
| 16 | |||
| 17 | public function __construct(string $binary) |
||
| 20 | } |
||
| 21 | |||
| 22 | public function getBinary(): string |
||
| 23 | { |
||
| 24 | return $this->binary; |
||
| 25 | } |
||
| 26 | |||
| 27 | public function getProcess(): FFprobeProcess |
||
| 34 | } |
||
| 35 | } |
||
| 36 |