Passed
Push — master ( ac0e9d...b23da5 )
by Amin
04:21
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/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.
src/AutoReps.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -172,7 +172,7 @@
 block discarded – undo
172 172
      */
173 173
     private function sortReps(array &$reps): void
174 174
     {
175
-        usort($reps, function (Representation $rep1, Representation $rep2) {
175
+        usort($reps, function(Representation $rep1, Representation $rep2) {
176 176
             $ascending = $rep1->getKiloBitrate() > $rep2->getKiloBitrate();
177 177
             return $this->sort === "asc" ? $ascending : !$ascending;
178 178
         });
Please login to merge, or discard this patch.