29 lines
645 B
PHP
Executable File
29 lines
645 B
PHP
Executable File
<?php
|
|
/**
|
|
* Copyright © Magento, Inc. All rights reserved.
|
|
* See COPYING.txt for license details.
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
[
|
|
'telephone' => 3468676,
|
|
'postcode' => 90230,
|
|
'country_id' => 'US',
|
|
'city' => 'Culver City',
|
|
'street' => 'Green str, 67',
|
|
'lastname' => 'Smith',
|
|
'firstname' => 'John',
|
|
'region_id' => 12,
|
|
],
|
|
[
|
|
'telephone' => 845454465,
|
|
'postcode' => 10178,
|
|
'country_id' => 'DE',
|
|
'city' => 'Berlin',
|
|
'street' => ['Tunnel Alexanderpl'],
|
|
'lastname' => 'Smith',
|
|
'firstname' => 'John',
|
|
]
|
|
];
|