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
30 lines
1.1 KiB
PHP
30 lines
1.1 KiB
PHP
<?php namespace App\Ninja\Transformers;
|
|
|
|
use App\Models\TaxRate;
|
|
|
|
/**
|
|
* @SWG\Definition(definition="TaxRate", @SWG\Xml(name="TaxRate"))
|
|
*/
|
|
|
|
class TaxRateTransformer extends EntityTransformer
|
|
{
|
|
/**
|
|
* @SWG\Property(property="id", type="integer", example=1, readOnly=true)
|
|
* @SWG\Property(property="name", type="string", example="GST")
|
|
* @SWG\Property(property="account_key", type="string", example="asimplestring", readOnly=true)
|
|
* @SWG\Property(property="rate", type="float", example=17.5)
|
|
* @SWG\Property(property="updated_at", type="date-time", example="2016-01-01 12:10:00")
|
|
* @SWG\Property(property="archived_at", type="date-time", example="2016-01-01 12:10:00")
|
|
*/
|
|
|
|
public function transform(TaxRate $taxRate)
|
|
{
|
|
return array_merge($this->getDefaults($taxRate), [
|
|
'id' => (int) $taxRate->public_id,
|
|
'name' => $taxRate->name,
|
|
'rate' => (float) $taxRate->rate,
|
|
'updated_at' => $this->getTimestamp($taxRate->updated_at),
|
|
'archived_at' => $this->getTimestamp($taxRate->deleted_at),
|
|
]);
|
|
}
|
|
} |