Test Failed
Push — master ( 48ddb2...dea459 )
by David
11:07
created
Service/CartManager.php 2 patches
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -68,21 +68,21 @@  discard block
 block discarded – undo
68 68
      */
69 69
     public function getCartFromCustomer(SkuskuCustomerInterface $customer = null)
70 70
     {
71
-        if( !$customer ) {
71
+        if (!$customer) {
72 72
             $customer = $this->tokenStorage->getToken()->getUser();
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) )
76
+        if (!($customer instanceof UserInterface))
77 77
             $customer = null;
78 78
 
79
-        if( !$this->allowAnonymous && !$customer )
79
+        if (!$this->allowAnonymous && !$customer)
80 80
             throw new AccessDeniedException("Anonymous users cannot buy");
81 81
 
82 82
         $cart = $this->em->getRepository('GGGGino\SkuskuCartBundle\Model\SkuskuCart')
83 83
             ->getOneNonOrderedCartByCustomer($customer);
84 84
 
85
-        if( !$cart )
85
+        if (!$cart)
86 86
             $cart = $this->createNewCart($customer);
87 87
 
88 88
         return $cart;
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
      */
135 135
     public function addProductToCartForm(Request $request, FormInterface $form)
136 136
     {
137
-        if( $this->handled )
137
+        if ($this->handled)
138 138
             return;
139 139
 
140 140
         $form->handleRequest($request);
@@ -150,10 +150,10 @@  discard block
 block discarded – undo
150 150
             /** @var SkuskuProductInterface $productReference */
151 151
             $productReference = $this->em->getReference(SkuskuProductInterface::class, $idProduct);
152 152
 
153
-            if( !($customer instanceof UserInterface) )
153
+            if (!($customer instanceof UserInterface))
154 154
                 $customer = null;
155 155
 
156
-            if( !$this->allowAnonymous && !$customer )
156
+            if (!$this->allowAnonymous && !$customer)
157 157
                 throw new AccessDeniedException("Anonymous users cannot buy");
158 158
 
159 159
             $this->addProductToCart($productReference, $quantity);
@@ -184,10 +184,10 @@  discard block
 block discarded – undo
184 184
         $this->em->persist($cart);
185 185
 
186 186
         /** @var SkuskuCartProduct $productCart */
187
-        if( $productCart = $cart->getProduct($product)->first() ){
187
+        if ($productCart = $cart->getProduct($product)->first()) {
188 188
             // @todo what?? $productCart->getQuantity() + $quantity
189 189
             $productCart->setQuantity($productCart->getQuantity() + $quantity);
190
-        }else{
190
+        } else {
191 191
             $productCart = new SkuskuCartProduct();
192 192
             $productCart->setProduct($product);
193 193
             $productCart->setQuantity($quantity);
Please login to merge, or discard this 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 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 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 )
87
+            if (!$paymentMethod)
88 88
                 return false;
89 89
 
90 90
             /** @var GatewayInterface $gateway */
Please login to merge, or discard this 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.
Model/SkuskuCartProductBase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -110,5 +110,5 @@
 block discarded – undo
110 110
         return $this->getProduct()->getPrice();
111 111
     }
112 112
 
113
-    public function getProductAttribute(){}
113
+    public function getProductAttribute() {}
114 114
 }
Please login to merge, or discard this patch.