From a3586425ce66b97d0d89748ed4043f1905175b4f Mon Sep 17 00:00:00 2001 From: Remco Date: Mon, 19 Jan 2026 21:35:49 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=86=99=20More=20fixes=20=F0=9F=86=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Updated_Cms/app/Http/Requests/ArticleCommentFormRequest.php | 3 +++ Updated_Cms/app/Http/Requests/GuestbookFormRequest.php | 3 +++ Updated_Cms/app/Http/Requests/StaffApplicationFormRequest.php | 2 +- 3 files changed, 7 insertions(+), 1 deletion(-) 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 {