mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-28 04:34:45 +02:00
14 lines
250 B
PHP
14 lines
250 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Transformers\Api\Application;
|
|
|
|
use Pterodactyl\Models\EggVariable;
|
|
|
|
class EggVariableTransformer extends BaseTransformer
|
|
{
|
|
public function transform(EggVariable $model)
|
|
{
|
|
return $model->toArray();
|
|
}
|
|
}
|