mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
f0bac9e077
* add types to transformers * minor fixes for test data creator
26 lines
609 B
PHP
26 lines
609 B
PHP
<?php
|
|
|
|
namespace App\Transformers;
|
|
|
|
use App\Models\TaxRate;
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
/**
|
|
* @SWG\Definition(definition="TaxRate", @SWG\Xml(name="TaxRate"))
|
|
*/
|
|
class TaxRateTransformer extends EntityTransformer
|
|
{
|
|
use MakesHash;
|
|
|
|
public function transform(TaxRate $tax_rate)
|
|
{
|
|
return [
|
|
'id' => (string) $this->encodePrimaryKey($tax_rate->id),
|
|
'name' => (string) $tax_rate->name,
|
|
'rate' => (float) $tax_rate->rate,
|
|
'updated_at' => (int)$tax_rate->updated_at,
|
|
'archived_at' => (int)$tax_rate->deleted_at,
|
|
];
|
|
}
|
|
}
|