Completed
Push — test-rewrite ( 18b1ba...382d7e )
by Laurent
01:30
created
server/src/Inventory/Domain/Model/Inventory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,11 +30,11 @@
 block discarded – undo
30 30
         $gaps = [];
31 31
         foreach ($this->articles->toArray() as $article) {
32 32
             if ($article->gap() !== null) {
33
-                $gaps[] = $article->gap() ;
33
+                $gaps[] = $article->gap();
34 34
             }
35 35
         }
36 36
 
37
-        usort($gaps, static function ($gapA, $gapB) use ($order) {
37
+        usort($gaps, static function($gapA, $gapB) use ($order) {
38 38
             if ($gapA[$order] === $gapB[$order]) {
39 39
                 return 0;
40 40
             }
Please login to merge, or discard this patch.