diff --git a/src/Tenancy.php b/src/Tenancy.php index d103aa5b..8d3a2504 100644 --- a/src/Tenancy.php +++ b/src/Tenancy.php @@ -159,7 +159,7 @@ class Tenancy $tenants = is_string($tenants) ? [$tenants] : $tenants; // Use all tenants if $tenants is falsy - $tenants = $tenants ?: $this->model()->cursor(); // todo1 phpstan thinks this isn't needed, but tests fail without it + $tenants = $tenants ?: $this->model()->cursor(); // todo@phpstan phpstan thinks this isn't needed, but tests fail without it $originalTenant = $this->tenant;