Passed
Pull Request — main (#4)
by Carsten
06:08 queued 02:03
created
src/Cart.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
      * @param string $itemIdentifier Unique item identifier
79 79
      * @return ItemInterface|bool
80 80
      */
81
-    public function inc(string $itemIdentifier): ItemInterface|bool
81
+    public function inc(string $itemIdentifier): ItemInterface | bool
82 82
     {
83 83
         /** @var ItemInterface $item */
84 84
         if ($item = Cart::item($itemIdentifier)) {
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
      * @param string $itemIdentifier Unique item identifier
98 98
      * @return ItemInterface|bool
99 99
      */
100
-    public function dec(string $itemIdentifier): ItemInterface|bool
100
+    public function dec(string $itemIdentifier): ItemInterface | bool
101 101
     {
102 102
         /** @var ItemInterface $item */
103 103
         if ($item = Cart::item($itemIdentifier)) {
Please login to merge, or discard this patch.