mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 19:14:45 +02:00
14 lines
239 B
PHP
14 lines
239 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Http\Requests\Api\Application\Servers;
|
|
|
|
class GetServersRequest extends GetServerRequest
|
|
{
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'search' => 'string|max:100',
|
|
];
|
|
}
|
|
}
|