Completed
Push — test-rewrite ( f17d31...b8e2e6 )
by Laurent
01:33
created
server/src/Inventory/Domain/UseCase/ValidInventory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     {
23 23
         $articles = $inventory->articles()->toArray();
24 24
 
25
-        \array_map(static function (Article $article): void {
25
+        \array_map(static function(Article $article): void {
26 26
             $article->validStock();
27 27
         }, $articles);
28 28
     }
Please login to merge, or discard this patch.
server/src/Inventory/Domain/Model/Inventory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
             }
46 46
         }
47 47
 
48
-        \usort($gaps, static function ($gapA, $gapB) use ($order) {
48
+        \usort($gaps, static function($gapA, $gapB) use ($order) {
49 49
             if ($gapA[$order] === $gapB[$order]) {
50 50
                 return 0;
51 51
             }
Please login to merge, or discard this patch.