@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | */ |
| 39 | 39 | public function audios() |
| 40 | 40 | { |
| 41 | - $audios = array_filter($this->streams, function (Stream $stream) { |
|
| 41 | + $audios = array_filter($this->streams, function(Stream $stream) { |
|
| 42 | 42 | return $stream->isAudio(); |
| 43 | 43 | }); |
| 44 | 44 | |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | */ |
| 51 | 51 | public function videos() |
| 52 | 52 | { |
| 53 | - $videos = array_filter($this->streams, function (Stream $stream) { |
|
| 53 | + $videos = array_filter($this->streams, function(Stream $stream) { |
|
| 54 | 54 | return $stream->isVideo(); |
| 55 | 55 | }); |
| 56 | 56 | |