From 89c378cc94fb1e5ebb695f092138d6e18532fd71 Mon Sep 17 00:00:00 2001 From: fadrian06 Date: Sun, 23 Aug 2026 17:10:13 -0400 Subject: [PATCH] fix constructor arguments typehint Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- flight/core/Loader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flight/core/Loader.php b/flight/core/Loader.php index 87ab8f0..f57ac80 100644 --- a/flight/core/Loader.php +++ b/flight/core/Loader.php @@ -113,7 +113,7 @@ class Loader * * @template T of object = object * @param class-string|callable(mixed ...$constructorArguments): T $class Class factory. - * @param string[] $params Class constructor arguments. + * @param mixed[] $params Class constructor arguments. * @return T * @throws Throwable */