mirror of
https://github.com/pelican-dev/panel.git
synced 2025-10-29 01:56:52 +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',
|
|
];
|
|
}
|
|
}
|