Completed
Push — master ( 2bd834...27ca42 )
by Łukasz
10:14 queued 10:06
created
src/Controller/Checkout/AddressAction.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,8 +44,7 @@
 block discarded – undo
44 44
             Address::createFromArray($request->request->get('shippingAddress')),
45 45
             Address::createFromArray(
46 46
                 $request->request->has('billingAddress') ?
47
-                    $request->request->get('billingAddress') :
48
-                    $request->request->get('shippingAddress')
47
+                    $request->request->get('billingAddress') : $request->request->get('shippingAddress')
49 48
             )
50 49
         ));
51 50
 
Please login to merge, or discard this patch.
src/Handler/CompleteOrderHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
      */
80 80
     private function provideCustometer(CompleteOrder $completeOrder)
81 81
     {
82
-        $customer =  $this->customerRepository->findOneBy(['email' => $completeOrder->email()]);
82
+        $customer = $this->customerRepository->findOneBy(['email' => $completeOrder->email()]);
83 83
 
84 84
         if (null === $customer) {
85 85
             /** @var CustomerInterface $customer */
Please login to merge, or discard this patch.
src/Factory/ProductViewFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Sylius\ShopApiPlugin\Factory;
6 6
 
Please login to merge, or discard this patch.
src/Factory/DetailedProductViewFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Sylius\ShopApiPlugin\Factory;
6 6
 
Please login to merge, or discard this patch.
src/Factory/ProductViewFactoryInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Sylius\ShopApiPlugin\Factory;
6 6
 
Please login to merge, or discard this patch.