pixelfed/app/Transformer/Api/ContextTransformer.php

17 wiersze
221 B
PHP
Czysty Zwykły widok Historia

2018-12-31 04:26:37 +00:00
<?php
namespace App\Transformer\Api;
use League\Fractal;
class ContextTransformer extends Fractal\TransformerAbstract
{
public function transform()
{
return [
'ancestors' => [],
'descendants' => []
];
}
}