Passed
Push — master ( 4bc7af...ac0e9d )
by Amin
02:25
created
src/Format/HEVC.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     {
24 24
         $this->setVideoCodec($video_codec);
25 25
 
26
-        if($audio_codec){
26
+        if ($audio_codec) {
27 27
             $this->setAudioCodec($audio_codec);
28 28
         }
29 29
     }
Please login to merge, or discard this patch.
src/File.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,9 @@
 block discarded – undo
42 42
         if (is_dir($dir)) {
43 43
             $size = 0;
44 44
             foreach (scandir($dir) as $file) {
45
-                if (in_array($file, [".", ".."])) continue;
45
+                if (in_array($file, [".", ".."])) {
46
+                    continue;
47
+                }
46 48
                 $filename = $dir . DIRECTORY_SEPARATOR . $file;
47 49
                 $size += is_file($filename) ? filesize($filename) : static::directorySize($filename);
48 50
             }
Please login to merge, or discard this patch.
src/Format/VP9.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     {
24 24
         $this->setVideoCodec($video_codec);
25 25
 
26
-        if($audio_codec){
26
+        if ($audio_codec) {
27 27
             $this->setAudioCodec($audio_codec);
28 28
         }
29 29
     }
Please login to merge, or discard this patch.
src/Format/X264.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     {
24 24
         $this->setVideoCodec($video_codec);
25 25
 
26
-        if($audio_codec){
26
+        if ($audio_codec) {
27 27
             $this->setAudioCodec($audio_codec);
28 28
         }
29 29
     }
Please login to merge, or discard this patch.
src/Filters/DASHFilter.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,6 @@
 block discarded – undo
61 61
     }
62 62
 
63 63
     /**
64
-
65 64
      * @return array
66 65
      */
67 66
     private function getBaseFilters(): array
Please login to merge, or discard this patch.