From 5d3ea6d787361c9b068732da548fc787820105e8 Mon Sep 17 00:00:00 2001 From: Nurmuhammet Allanov Date: Fri, 31 Oct 2025 01:21:00 +0500 Subject: [PATCH] stan errors done --- app/Modules/module-helpers.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Modules/module-helpers.php b/app/Modules/module-helpers.php index d69dc83..84f5f43 100644 --- a/app/Modules/module-helpers.php +++ b/app/Modules/module-helpers.php @@ -74,14 +74,14 @@ function module_exists(string $moduleName): bool * echo $user->greet(); // Hello, Ahmet * ``` * - * @template T of object * * @param mixed ...$arguments Key-value pairs (property name => value or Closure) - * @return T Anonymous class instance exposing dynamic properties/methods. */ function emptyClass(mixed ...$arguments): object { - /** @var T */ + /** + * @var array $arguments + */ return new class($arguments) { /**