mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 13:42:49 +01:00
0fbda85a59
- Removed unused uses - Type hinting for method parameters - Removed commented code - Introduced comments for classes and methods - Short array syntax
36 lines
933 B
PHP
36 lines
933 B
PHP
<?php namespace App\Ninja\Import\Ronin;
|
|
|
|
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->company)) {
|
|
return false;
|
|
}
|
|
|
|
return new Item($data, function ($data) {
|
|
return [
|
|
'name' => $this->getString($data, 'company'),
|
|
'work_phone' => $this->getString($data, 'phone'),
|
|
'contacts' => [
|
|
[
|
|
'first_name' => $this->getFirstName($data->name),
|
|
'last_name' => $this->getLastName($data->name),
|
|
'email' => $this->getString($data, 'email'),
|
|
],
|
|
],
|
|
];
|
|
});
|
|
}
|
|
}
|