nooktheme/app/Http/Requests/Api/Application/Servers/GetServersRequest.php
mowetentertainment1 eb5b65cec6 initial commit
2025-11-01 19:45:11 -04:00

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',
];
}
}