. * * This software is licensed under the terms of the MIT license. * https://opensource.org/licenses/MIT */ namespace Pterodactyl\Http\Requests\Admin\Service; use Pterodactyl\Http\Requests\Admin\AdminFormRequest; class ServiceFormRequest extends AdminFormRequest { /** * @return array */ public function rules() { return [ 'name' => 'required|string|min:1|max:255', 'description' => 'required|nullable|string', 'startup' => 'required|nullable|string', ]; } }