. * * 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 ServiceFunctionsFormRequest extends AdminFormRequest { /** * @return array */ public function rules() { return [ 'index_file' => 'required|nullable|string', ]; } }