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); }