Completed
Pull Request — master (#72)
by Łukasz
03:01
created
src/Controller/CartController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -318,7 +318,7 @@
 block discarded – undo
318 318
             return $product->getVariants()[0];
319 319
         }
320 320
 
321
-        if ($product->hasOptions()){
321
+        if ($product->hasOptions()) {
322 322
             return $this->getVariant($request->request->get('options'), $product);
323 323
         }
324 324
 
Please login to merge, or discard this patch.
src/Controller/CheckoutController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -137,7 +137,7 @@
 block discarded – undo
137 137
         /** @var ServiceRegistryInterface $calculators */
138 138
         $calculators = $this->get('sylius.registry.shipping_calculator');
139 139
 
140
-        $shippingMethods =  $shippingMethodsResolver->getSupportedMethods($shipment);
140
+        $shippingMethods = $shippingMethodsResolver->getSupportedMethods($shipment);
141 141
 
142 142
         $rawShippingMethods = [];
143 143
 
Please login to merge, or discard this patch.