mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 17:36:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			238 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			238 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Http\Requests\Api\Application\Eggs;
 | |
| 
 | |
| class ExportEggRequest extends GetEggRequest
 | |
| {
 | |
|     public function rules(): array
 | |
|     {
 | |
|         return [
 | |
|             'format' => 'nullable|string|in:yaml,json',
 | |
|         ];
 | |
|     }
 | |
| }
 | 
