2018-01-20 03:47:06 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Transformers\Api\Application;
|
|
|
|
|
2018-01-26 03:26:06 +00:00
|
|
|
use Pterodactyl\Models\Egg;
|
2018-01-20 03:47:06 +00:00
|
|
|
use Pterodactyl\Models\EggVariable;
|
2022-12-15 00:05:46 +00:00
|
|
|
use Pterodactyl\Transformers\Api\Transformer;
|
2018-01-20 03:47:06 +00:00
|
|
|
|
2022-12-15 00:05:46 +00:00
|
|
|
class EggVariableTransformer extends Transformer
|
2018-01-20 03:47:06 +00:00
|
|
|
{
|
2018-01-26 03:26:06 +00:00
|
|
|
/**
|
|
|
|
* Return the resource name for the JSONAPI output.
|
|
|
|
*/
|
|
|
|
public function getResourceName(): string
|
|
|
|
{
|
|
|
|
return Egg::RESOURCE_NAME;
|
|
|
|
}
|
|
|
|
|
2022-12-15 00:05:46 +00:00
|
|
|
/**
|
|
|
|
* Transform egg variable into a representation for the application API.
|
|
|
|
*/
|
|
|
|
public function transform(EggVariable $model): array
|
2018-01-20 03:47:06 +00:00
|
|
|
{
|
|
|
|
return $model->toArray();
|
|
|
|
}
|
|
|
|
}
|