2018-01-20 03:47:06 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Http\Requests\Api\Application\Servers;
|
|
|
|
|
2018-02-24 18:15:21 +00:00
|
|
|
class GetServersRequest extends GetServerRequest
|
2018-01-20 03:47:06 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules(): array
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'search' => 'string|max:100',
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|