diff --git a/Updated_Cms/app/Http/Requests/ArticleCommentFormRequest.php b/Updated_Cms/app/Http/Requests/ArticleCommentFormRequest.php index 6c041d55f0..33fc262d3b 100644 --- a/Updated_Cms/app/Http/Requests/ArticleCommentFormRequest.php +++ b/Updated_Cms/app/Http/Requests/ArticleCommentFormRequest.php @@ -7,6 +7,9 @@ use Illuminate\Foundation\Http\FormRequest; class ArticleCommentFormRequest extends FormRequest { + /** + * @return array> + */ public function rules(): array { return [ diff --git a/Updated_Cms/app/Http/Requests/GuestbookFormRequest.php b/Updated_Cms/app/Http/Requests/GuestbookFormRequest.php index 892fe0309d..e76183d999 100644 --- a/Updated_Cms/app/Http/Requests/GuestbookFormRequest.php +++ b/Updated_Cms/app/Http/Requests/GuestbookFormRequest.php @@ -7,6 +7,9 @@ use Illuminate\Foundation\Http\FormRequest; class GuestbookFormRequest extends FormRequest { + /** + * @return array> + */ public function rules(): array { return [ diff --git a/Updated_Cms/app/Http/Requests/StaffApplicationFormRequest.php b/Updated_Cms/app/Http/Requests/StaffApplicationFormRequest.php index 4cb1e70a0c..1744f96fbf 100644 --- a/Updated_Cms/app/Http/Requests/StaffApplicationFormRequest.php +++ b/Updated_Cms/app/Http/Requests/StaffApplicationFormRequest.php @@ -9,7 +9,7 @@ use RyanChandler\LaravelCloudflareTurnstile\Rules\Turnstile; class StaffApplicationFormRequest extends FormRequest { /** - * @return array> + * @return array> */ public function rules(): array {