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();
|
||
|
}
|
||
|
}
|