Total Complexity | 4 |
Total Lines | 40 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class AdvancedMedia extends MediaAdvancedMedia |
||
9 | { |
||
10 | use InteractsWithHttpHeaders; |
||
11 | |||
12 | /** |
||
13 | * Create a new instance of this class with the instance of the underlying library. |
||
14 | * |
||
15 | * @param \FFMpeg\Media\AdvancedMedia $media |
||
16 | * @return self |
||
17 | */ |
||
18 | public static function make(MediaAdvancedMedia $media): self |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * Builds the command using the underlying library and then |
||
25 | * prepends every input with its own set of headers. |
||
26 | * |
||
27 | * @return array |
||
28 | */ |
||
29 | protected function buildCommand() |
||
50 |