From 609b6f12cf7842e4e6cbb6166ce461e6420dda9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Fri, 6 Dec 2019 22:34:02 +0100 Subject: [PATCH] Remove typehints passed to route() --- src/helpers.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers.php b/src/helpers.php index 67acd2fb..58aa8ccb 100644 --- a/src/helpers.php +++ b/src/helpers.php @@ -57,7 +57,7 @@ if (! function_exists('global_cache')) { } if (! function_exists('tenant_route')) { - function tenant_route(string $route, array $parameters = [], string $domain = null): string + function tenant_route($route, $parameters = [], string $domain = null) { $domain = $domain ?? request()->getHost();