Add InstanceTransformer

This commit is contained in:
Daniel Supernault 2018-11-28 23:51:10 -07:00
parent 5b4d76a32e
commit a6a37cdd50
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
<?php
namespace App\Transformer\Api;
use App\Instance;
use League\Fractal;
class InstanceTransformer extends Fractal\TransformerAbstract
{
public function transform(Instance $instance)
{
return [
'uri' => $instance->url,
'title' => null,
'description' => null,
'email' => null,
'version' => null,
'thumbnail' => null,
'urls' => [],
'stats' => [],
'languages' => null,
'contact_account' => null
];
}
}