From 12fcbabd76315fdab6c33318354ec28b9bc8de9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Wed, 18 Jun 2025 23:52:35 +0200 Subject: [PATCH] phpstan fix --- src/helpers.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers.php b/src/helpers.php index 5794a000..903c5c40 100644 --- a/src/helpers.php +++ b/src/helpers.php @@ -30,7 +30,7 @@ if (! function_exists('tenant')) { return app(Tenant::class); } - return app(Tenant::class)?->getAttribute($key); + return app(Tenant::class)->getAttribute($key); } }