1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2024-12-26 01:36:43 +00:00
pixelfed/app/Transformer/Api/InstanceTransformer.php
2018-11-28 23:51:10 -07:00

25 lines
649 B
PHP

<?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
];
}
}