1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-03-21 23:44:03 +00:00

Remove phpstan ignore

This commit is contained in:
lukinovec 2026-03-09 11:50:11 +01:00
parent 883b91805a
commit 0e2c73d638

View file

@ -159,7 +159,7 @@ class TenancyUrlGenerator extends UrlGenerator
$name = $route->getName();
if ($name) {
[$prefixedName, $parameters] = $this->prepareRouteInputs($name, Arr::wrap($parameters)); // @phpstan-ignore argument.type
[$prefixedName, $parameters] = $this->prepareRouteInputs($name, Arr::wrap($parameters));
if ($prefixedName !== $name && $tenantRoute = $this->routes->getByName($prefixedName)) {
$route = $tenantRoute;