mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-27 08:36:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			444 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			444 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Pterodactyl\Transformers\Api\Application;
 | |
| 
 | |
| use Pterodactyl\Models\Egg;
 | |
| use Pterodactyl\Models\EggVariable;
 | |
| 
 | |
| class EggVariableTransformer extends BaseTransformer
 | |
| {
 | |
|     /**
 | |
|      * Return the resource name for the JSONAPI output.
 | |
|      */
 | |
|     public function getResourceName(): string
 | |
|     {
 | |
|         return Egg::RESOURCE_NAME;
 | |
|     }
 | |
| 
 | |
|     public function transform(EggVariable $model)
 | |
|     {
 | |
|         return $model->toArray();
 | |
|     }
 | |
| }
 | 
