Passed
Push — master ( 17b30e...88ad78 )
by Amin
03:09
created
src/MediaInfo/Streams/StreamCollection.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.