Completed
Pull Request — master (#18)
by Lars
08:41
created
src/Customer/CustomerBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -171,7 +171,7 @@
 block discarded – undo
171 171
             $builder->customer->setEmail(sha1(uniqid('', true)) . '@example.com');
172 172
         }
173 173
         $addresses = array_map(
174
-            function (AddressBuilder $addressBuilder) {
174
+            function(AddressBuilder $addressBuilder) {
175 175
                 return $addressBuilder->buildWithoutSave();
176 176
             },
177 177
             $builder->addressBuilders
Please login to merge, or discard this patch.
src/Customer/CustomerFixture.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
     public function getAllAddressIds(): array
52 52
     {
53 53
         return array_map(
54
-            function (AddressInterface $address) {
54
+            function(AddressInterface $address) {
55 55
                 return $address->getId();
56 56
             },
57 57
             $this->customer->getAddresses()
Please login to merge, or discard this patch.