Test Failed
Push — master ( 48ddb2...dea459 )
by David
11:07
created
Service/CartManager.php 1 patch
Braces   +19 added lines, -13 removed lines patch added patch discarded remove patch
@@ -73,17 +73,20 @@  discard block
 block discarded – undo
73 73
         }
74 74
 
75 75
         // If the user is anon. the arg $customer is a string, so i check it
76
-        if( !($customer instanceof UserInterface) )
77
-            $customer = null;
76
+        if( !($customer instanceof UserInterface) ) {
77
+                    $customer = null;
78
+        }
78 79
 
79
-        if( !$this->allowAnonymous && !$customer )
80
-            throw new AccessDeniedException("Anonymous users cannot buy");
80
+        if( !$this->allowAnonymous && !$customer ) {
81
+                    throw new AccessDeniedException("Anonymous users cannot buy");
82
+        }
81 83
 
82 84
         $cart = $this->em->getRepository('GGGGino\SkuskuCartBundle\Model\SkuskuCart')
83 85
             ->getOneNonOrderedCartByCustomer($customer);
84 86
 
85
-        if( !$cart )
86
-            $cart = $this->createNewCart($customer);
87
+        if( !$cart ) {
88
+                    $cart = $this->createNewCart($customer);
89
+        }
87 90
 
88 91
         return $cart;
89 92
     }
@@ -134,8 +137,9 @@  discard block
 block discarded – undo
134 137
      */
135 138
     public function addProductToCartForm(Request $request, FormInterface $form)
136 139
     {
137
-        if( $this->handled )
138
-            return;
140
+        if( $this->handled ) {
141
+                    return;
142
+        }
139 143
 
140 144
         $form->handleRequest($request);
141 145
 
@@ -150,11 +154,13 @@  discard block
 block discarded – undo
150 154
             /** @var SkuskuProductInterface $productReference */
151 155
             $productReference = $this->em->getReference(SkuskuProductInterface::class, $idProduct);
152 156
 
153
-            if( !($customer instanceof UserInterface) )
154
-                $customer = null;
157
+            if( !($customer instanceof UserInterface) ) {
158
+                            $customer = null;
159
+            }
155 160
 
156
-            if( !$this->allowAnonymous && !$customer )
157
-                throw new AccessDeniedException("Anonymous users cannot buy");
161
+            if( !$this->allowAnonymous && !$customer ) {
162
+                            throw new AccessDeniedException("Anonymous users cannot buy");
163
+            }
158 164
 
159 165
             $this->addProductToCart($productReference, $quantity);
160 166
         }
@@ -187,7 +193,7 @@  discard block
 block discarded – undo
187 193
         if( $productCart = $cart->getProduct($product)->first() ){
188 194
             // @todo what?? $productCart->getQuantity() + $quantity
189 195
             $productCart->setQuantity($productCart->getQuantity() + $quantity);
190
-        }else{
196
+        } else{
191 197
             $productCart = new SkuskuCartProduct();
192 198
             $productCart->setProduct($product);
193 199
             $productCart->setQuantity($quantity);
Please login to merge, or discard this patch.
Form/CartFlow.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -84,8 +84,9 @@
 block discarded – undo
84 84
             $paymentMethod = $data->getPaymentMethod();
85 85
 
86 86
             // se non è settato vuol dire che non ci sono ancora arrivato
87
-            if( !$paymentMethod )
88
-                return false;
87
+            if( !$paymentMethod ) {
88
+                            return false;
89
+            }
89 90
 
90 91
             /** @var GatewayInterface $gateway */
91 92
             $gateway = $this->payum->getGateway($paymentMethod);
Please login to merge, or discard this patch.