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.