Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
address_data.php
Go to the documentation of this file.
1 <?php
6 declare(strict_types=1);
7 
8 return [
9  [
10  'telephone' => 3468676,
11  'postcode' => 90230,
12  'country_id' => 'US',
13  'city' => 'Culver City',
14  'street' => 'Green str, 67',
15  'lastname' => 'Smith',
16  'firstname' => 'John',
17  'region_id' => 12,
18  ],
19  [
20  'telephone' => 845454465,
21  'postcode' => 10178,
22  'country_id' => 'DE',
23  'city' => 'Berlin',
24  'street' => ['Tunnel Alexanderpl'],
25  'lastname' => 'Smith',
26  'firstname' => 'John',
27  ]
28 ];