Total Complexity | 4 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
12 | class ThumbService implements ThumbServiceInterface |
||
13 | { |
||
14 | use PathAssertionsTrait; |
||
15 | |||
16 | /** @var FFMpegConfig */ |
||
17 | protected $ffmpegConfig; |
||
18 | |||
19 | 1 | public function __construct(FFMpegConfig $ffmpegConfig) |
|
22 | 1 | } |
|
23 | |||
24 | 1 | public function makeThumbnails(string $videoFile, string $outputFile, float $time = 0.0, ?VideoFilterInterface $videoFilter = null): void |
|
49 |