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