From d7a43f162c1417c1a2630e5e48afc30c4581ba7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Rub=C3=A9l?= Date: Mon, 23 May 2022 09:26:15 +0200 Subject: [PATCH] change return type --- src/Helpers/helpers.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Helpers/helpers.php b/src/Helpers/helpers.php index f50b666..c299ef3 100644 --- a/src/Helpers/helpers.php +++ b/src/Helpers/helpers.php @@ -12,9 +12,9 @@ * @param array $parameters * @param string|null $context * - * @return mixed + * @return CallProxy */ - function call(string|object $class, array $parameters = [], ?string $context = null): mixed + function call(string|object $class, array $parameters = [], ?string $context = null): CallProxy { return new CallProxy($class, $parameters, $context); }