23 lines
455 B
PHP
23 lines
455 B
PHP
|
<?php
|
||
|
|
||
|
namespace datasets;
|
||
|
|
||
|
class DataCustomersRetailCrm
|
||
|
{
|
||
|
public static function getCustomerAddress()
|
||
|
{
|
||
|
return array(
|
||
|
'success' => true,
|
||
|
'addresses' => array (
|
||
|
'id' => 3503,
|
||
|
'index' => 144566,
|
||
|
'countryIso' => 'ES',
|
||
|
'region' => 'Region',
|
||
|
'city' => 'City',
|
||
|
'text' => 'street Test 777',
|
||
|
)
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|