| Total Complexity | 7 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 1 |
| 1 | <?php |
||
| 15 | class AudioStrategy extends MergeStrategy |
||
| 16 | { |
||
| 17 | use ChecksIntegrity, |
||
| 18 | HandlesFFMpeg; |
||
| 19 | |||
| 20 | public function merge() |
||
| 21 | { |
||
| 22 | $this->mergeWithFFMpeg(); |
||
| 23 | |||
| 24 | $this->deleteChunks($this->folder); |
||
|
|
|||
| 25 | |||
| 26 | return $this->mergeContents(); |
||
| 27 | } |
||
| 28 | |||
| 29 | /** |
||
| 30 | * {@inheritdoc} |
||
| 31 | */ |
||
| 32 | public function guessFormat() |
||
| 49 | } |
||
| 50 | } |
||
| 52 |