63f377a038
Servers: list all, list single Nodes: list all, list single, list single allocations, add node Locations: list all
21 lines
340 B
PHP
21 lines
340 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Transformers;
|
|
|
|
use Pterodactyl\Models\Node;
|
|
use League\Fractal\TransformerAbstract;
|
|
|
|
class NodeTransformer extends TransformerAbstract
|
|
{
|
|
|
|
/**
|
|
* Turn this item object into a generic array
|
|
*
|
|
* @return array
|
|
*/
|
|
public function transform(Node $node)
|
|
{
|
|
return $node;
|
|
}
|
|
|
|
}
|