Completed
Push — master ( 837063...6b2070 )
by Thiago
02:23 queued 33s
created
src/Cart.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,9 +8,9 @@
 block discarded – undo
8 8
 
9 9
 class Cart extends SplObjectStorage implements CartInterface
10 10
 {
11
-    public function __construct(array $items = [])
11
+    public function __construct(array $items = [ ])
12 12
     {
13
-        array_walk($items, [ $this, 'attach']);
13
+        array_walk($items, [ $this, 'attach' ]);
14 14
     }
15 15
     
16 16
     public function addItem(ItemInterface $item): bool
Please login to merge, or discard this patch.