mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
31 lines
575 B
PHP
31 lines
575 B
PHP
<?php
|
|
|
|
namespace App\Ninja\Import\Harvest;
|
|
|
|
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->client_name)) {
|
|
return false;
|
|
}
|
|
|
|
return new Item($data, function ($data) {
|
|
return [
|
|
'name' => $this->getString($data, 'client_name'),
|
|
];
|
|
});
|
|
}
|
|
}
|