Completed
Pull Request — master (#285)
by
unknown
02:58
created
src/Factory/AddressBookViewFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
         $addressBookView                 = new AddressBookView();
33 33
         $addressBookView->defaultAddress = ($address === null) ? null : $this->addressViewFactory->create($address);
34 34
         $addressBookView->addresses      = $otherAddress->map(
35
-            function (AddressInterface $address): AddressView {
35
+            function(AddressInterface $address): AddressView {
36 36
                 return $this->addressViewFactory->create($address);
37 37
             }
38 38
         );
Please login to merge, or discard this patch.
src/Controller/Customer/CustomerAddressAction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
         }
69 69
 
70 70
         return $this->viewHandler->handle(
71
-            View::create($this->addressBookViewFactory->create($address, $otherAddress),Response::HTTP_OK)
71
+            View::create($this->addressBookViewFactory->create($address, $otherAddress), Response::HTTP_OK)
72 72
         );
73 73
     }
74 74
 
Please login to merge, or discard this patch.
LoggedInCustomerDetailsActionTest.php 1 patch
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
             "_username": "[email protected]",
29 29
             "_password": "123pa\$\$word"
30 30
         }
31
-EOT;
31
+eot;
32 32
 
33 33
         $this->client->request('POST', '/shop-api/login_check', [], [], ['CONTENT_TYPE' => 'application/json', 'ACCEPT' => 'application/json'], $data);
34 34
 
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
             "_username": "[email protected]",
63 63
             "_password": "123pa\$\$word"
64 64
         }
65
-EOT;
65
+eot;
66 66
 
67 67
         $this->client->request('POST', '/shop-api/login_check', [], [], ['CONTENT_TYPE' => 'application/json', 'ACCEPT' => 'application/json'], $data);
68 68
 
Please login to merge, or discard this patch.