From c043661318c033c53d791a62f01a6f367bd77102 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Tue, 21 Nov 2023 02:11:33 +0100 Subject: [PATCH] update todo --- src/Tenancy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;