| Total Complexity | 2 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class AudioStyle extends Style |
||
| 13 | { |
||
| 14 | public readonly LaruploadMediaStyle $mode; |
||
| 15 | public readonly Mp3|Aac|Wav|Flac $format; |
||
| 16 | |||
| 17 | public function __construct(string $name, Mp3|Aac|Wav|Flac $format = new Mp3, int $bitrate = 128) |
||
| 24 | } |
||
| 25 | |||
| 26 | public static function make(string $name, Mp3|Aac|Wav|Flac $format = new Mp3, int $bitrate = 128): self |
||
| 31 |