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
29 lines
891 B
PHP
29 lines
891 B
PHP
<?php namespace App\Ninja\Transformers;
|
|
|
|
use App\Models\Contact;
|
|
|
|
/**
|
|
* Class ContactTransformer
|
|
*/
|
|
class ContactTransformer extends EntityTransformer
|
|
{
|
|
/**
|
|
* @param Contact $contact
|
|
* @return array
|
|
*/
|
|
public function transform(Contact $contact)
|
|
{
|
|
return array_merge($this->getDefaults($contact), [
|
|
'id' => (int) $contact->public_id,
|
|
'first_name' => $contact->first_name,
|
|
'last_name' => $contact->last_name,
|
|
'email' => $contact->email,
|
|
'updated_at' => $this->getTimestamp($contact->updated_at),
|
|
'archived_at' => $this->getTimestamp($contact->deleted_at),
|
|
'is_primary' => (bool) $contact->is_primary,
|
|
'phone' => $contact->phone,
|
|
'last_login' => $contact->last_login,
|
|
'send_invoice' => (bool) $contact->send_invoice,
|
|
]);
|
|
}
|
|
} |