Total Complexity | 7 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
7 | class VideoFilterChain extends AbstractVideoFilter |
||
8 | { |
||
9 | /** @var VideoFilterInterface[] */ |
||
10 | protected $filters = []; |
||
11 | |||
12 | 4 | public function __construct() |
|
13 | { |
||
14 | 4 | } |
|
15 | |||
16 | 3 | public function getFilters(): array |
|
19 | } |
||
20 | |||
21 | 4 | public function addFilter(VideoFilterInterface $filter): void |
|
24 | 4 | } |
|
25 | |||
26 | 3 | public function getFFmpegCLIValue(): string |
|
44 |