From e4193c403d33672786f74fc29aece259ab7eb355 Mon Sep 17 00:00:00 2001 From: partydragen Date: Wed, 17 Jul 2024 20:25:07 +0200 Subject: [PATCH] StyleCI Fix --- core/classes/Core/Validate.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/classes/Core/Validate.php b/core/classes/Core/Validate.php index 4233c436eb..85021fdc80 100644 --- a/core/classes/Core/Validate.php +++ b/core/classes/Core/Validate.php @@ -501,9 +501,9 @@ private function addError(array $error): void * Add an array of information to generate an error message to the $_to_convert array. * These errors will be translated in the `errors()` function later. * - * @param string $item field item + * @param string $item field item * @param string $error error message - * @param array $meta error metadata + * @param array $meta error metadata */ public function addCustomError(string $item, string $error, array $meta = []): void { @@ -511,7 +511,7 @@ public function addCustomError(string $item, string $error, array $meta = []): v 'field' => $item, 'rule' => self::CUSTOM, 'fallback' => $error, - 'meta' => $meta + 'meta' => $meta, ]; }