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) { /**