1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 01:11:34 +02:00
invoiceninja/app/Ninja/Import/Harvest/ClientTransformer.php
2016-01-06 09:52:26 +02:00

21 lines
470 B
PHP

<?php namespace App\Ninja\Import\Harvest;
use App\Ninja\Import\BaseTransformer;
use League\Fractal\Resource\Item;
class ClientTransformer extends BaseTransformer
{
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'),
];
});
}
}