13 lines
250 B
PHP
13 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();
|
|
}
|
|
}
|