Passed
Push — master ( 3f9dc5...9316b9 )
by Svaťa
03:00
created
src/Domain/Price.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
      */
27 27
     public static function sum(array $prices): self
28 28
     {
29
-        return array_reduce($prices, function (self $carry, self $price) {
29
+        return array_reduce($prices, function(self $carry, self $price) {
30 30
             return $carry->add($price);
31 31
         }, new self('0'));
32 32
     }
Please login to merge, or discard this patch.