1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 17:31:35 +02:00
invoiceninja/app/Ninja/Import/Wave/ClientTransformer.php
Holger Lösken 0fbda85a59 Code Refactoring
- Removed unused uses
- Type hinting for method parameters
- Removed commented code
- Introduced comments for classes and methods
- Short array syntax
2016-07-03 16:19:22 +00:00

46 lines
1.6 KiB
PHP

<?php namespace App\Ninja\Import\Wave;
use App\Ninja\Import\BaseTransformer;
use League\Fractal\Resource\Item;
/**
* Class ClientTransformer
*/
class ClientTransformer extends BaseTransformer
{
/**
* @param $data
* @return bool|Item
*/
public function transform($data)
{
if ($this->hasClient($data->customer_name)) {
return false;
}
return new Item($data, function ($data) {
return [
'name' => $this->getString($data, 'customer_name'),
'id_number' => $this->getString($data, 'account_number'),
'work_phone' => $this->getString($data, 'phone'),
'website' => $this->getString($data, 'website'),
'address1' => $this->getString($data, 'address_line_1'),
'address2' => $this->getString($data, 'address_line_2'),
'city' => $this->getString($data, 'city'),
'state' => $this->getString($data, 'provincestate'),
'postal_code' => $this->getString($data, 'postal_codezip_code'),
'private_notes' => $this->getString($data, 'delivery_instructions'),
'contacts' => [
[
'first_name' => $this->getString($data, 'contact_first_name'),
'last_name' => $this->getString($data, 'contact_last_name'),
'email' => $this->getString($data, 'email'),
'phone' => $this->getString($data, 'mobile'),
],
],
'country_id' => $this->getCountryId($data->country),
];
});
}
}