Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/app/Http/Requests/Api/Application/Servers/GetServersRequest.php
10279 views
1
<?php
2
3
namespace Pterodactyl\Http\Requests\Api\Application\Servers;
4
5
class GetServersRequest extends GetServerRequest
6
{
7
public function rules(): array
8
{
9
return [
10
'search' => 'string|max:100',
11
];
12
}
13
}
14
15