Passed
Push — master ( b8c962...9f04d2 )
by Brice
02:37
created
src/Infrastructure/RedisQueue.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -167,7 +167,9 @@
 block discarded – undo
167 167
             $aValue = $a[$orderBy];
168 168
             $bValue = $b[$orderBy];
169 169
 
170
-            if ($aValue === $bValue) return 0;
170
+            if ($aValue === $bValue) {
171
+                return 0;
172
+            }
171 173
 
172 174
             return $aValue < $bValue ? -1 : 1;
173 175
         });
Please login to merge, or discard this patch.