@@ -22,7 +22,7 @@ |
||
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 | } |
@@ -45,7 +45,7 @@ |
||
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 | } |