mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
0fbda85a59
- Removed unused uses - Type hinting for method parameters - Removed commented code - Introduced comments for classes and methods - Short array syntax
27 lines
609 B
PHP
27 lines
609 B
PHP
<?php namespace App\Ninja\Import\Invoiceable;
|
|
|
|
use App\Ninja\Import\BaseTransformer;
|
|
use League\Fractal\Resource\Item;
|
|
|
|
/**
|
|
* Class PaymentTransformer
|
|
*/
|
|
class PaymentTransformer extends BaseTransformer
|
|
{
|
|
/**
|
|
* @param $data
|
|
* @return Item
|
|
*/
|
|
public function transform($data)
|
|
{
|
|
return new Item($data, function ($data) {
|
|
return [
|
|
'amount' => $data->paid,
|
|
'payment_date_sql' => $data->date_paid,
|
|
'client_id' => $data->client_id,
|
|
'invoice_id' => $data->invoice_id,
|
|
];
|
|
});
|
|
}
|
|
}
|