invoiceninja/app/Ninja/Transformers/DocumentTransformer.php

32 lines
1.2 KiB
PHP
Raw Normal View History

2017-01-30 21:40:43 +02:00
<?php
namespace App\Ninja\Transformers;
2016-05-02 20:02:15 +03:00
use App\Models\Document;
/**
2016-12-29 18:17:17 +02:00
* @SWG\Definition(definition="Document", @SWG\Xml(name="Document"))
*/
2016-05-02 20:02:15 +03:00
class DocumentTransformer extends EntityTransformer
{
/**
2017-01-30 21:40:43 +02:00
* @SWG\Property(property="id", type="integer", example=1, readOnly=true)
* @SWG\Property(property="name", type="string", example="Test")
* @SWG\Property(property="type", type="string", example="CSV")
* @SWG\Property(property="invoice_id", type="integer", example=1)
* @SWG\Property(property="updated_at", type="timestamp", example=1451160233, readOnly=true)
* @SWG\Property(property="archived_at", type="timestamp", example=1451160233, readOnly=true)
*/
2016-05-02 20:02:15 +03:00
public function transform(Document $document)
{
2016-05-03 23:02:29 +03:00
return array_merge($this->getDefaults($document), [
2016-05-02 20:02:15 +03:00
'id' => (int) $document->public_id,
'name' => $document->name,
2017-01-30 21:40:43 +02:00
'type' => $document->type,
2016-05-02 20:02:15 +03:00
'invoice_id' => isset($document->invoice->public_id) ? (int) $document->invoice->public_id : null,
'expense_id' => isset($document->expense->public_id) ? (int) $document->expense->public_id : null,
2016-06-01 21:36:27 +10:00
'updated_at' => $this->getTimestamp($document->updated_at),
2016-05-03 23:02:29 +03:00
]);
2016-05-02 20:02:15 +03:00
}
2016-06-01 21:35:53 +10:00
}