Passed
Push — master ( ac0e9d...b23da5 )
by Amin
04:21
created
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.