misc_pterodactyl-panel/app/Transformers/Api/Application/EggVariableTransformer.php

14 lines
250 B
PHP
Raw Normal View History

<?php
namespace Pterodactyl\Transformers\Api\Application;
use Pterodactyl\Models\EggVariable;
class EggVariableTransformer extends BaseTransformer
{
public function transform(EggVariable $model)
{
return $model->toArray();
}
}