address_data.php 645 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. declare(strict_types=1);
  7. return [
  8. [
  9. 'telephone' => 3468676,
  10. 'postcode' => 90230,
  11. 'country_id' => 'US',
  12. 'city' => 'Culver City',
  13. 'street' => 'Green str, 67',
  14. 'lastname' => 'Smith',
  15. 'firstname' => 'John',
  16. 'region_id' => 12,
  17. ],
  18. [
  19. 'telephone' => 845454465,
  20. 'postcode' => 10178,
  21. 'country_id' => 'DE',
  22. 'city' => 'Berlin',
  23. 'street' => ['Tunnel Alexanderpl'],
  24. 'lastname' => 'Smith',
  25. 'firstname' => 'John',
  26. ]
  27. ];