1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 14:14:04 +00:00

phpstan fix

This commit is contained in:
Samuel Štancl 2025-06-18 23:52:35 +02:00
parent 551895d582
commit 12fcbabd76

View file

@ -30,7 +30,7 @@ if (! function_exists('tenant')) {
return app(Tenant::class); return app(Tenant::class);
} }
return app(Tenant::class)?->getAttribute($key); return app(Tenant::class)->getAttribute($key);
} }
} }