芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/app/Http/Requests/SettingKeyRequest.php
<?php namespace App\Http\Requests; use Illuminate\Foundation\Http\FormRequest; class SettingKeyRequest extends FormRequest { /** * Determine if the user is authorized to make this request. */ public function authorize(): bool { return true; } /** * Get the validation rules that apply to the request. */ public function rules(): array { return [ 'key' => [ 'required', ], ]; } }