7
0
mirror of https://github.com/pelican-dev/panel.git synced 2025-06-15 08:11:09 +02:00
2018-02-24 12:15:21 -06:00

17 lines
276 B
PHP

<?php
namespace Pterodactyl\Http\Requests\Api\Application\Servers;
class GetServersRequest extends GetServerRequest
{
/**
* @return array
*/
public function rules(): array
{
return [
'search' => 'string|max:100',
];
}
}