1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 17:14:03 +00:00

Don't access static property as non-static

This commit is contained in:
lukinovec 2023-02-23 15:38:36 +01:00
parent e75aefb65e
commit 3e6dd646ae

View file

@ -26,7 +26,7 @@ class TenancyServiceProvider extends ServiceProvider
// Make sure Tenancy is stateful.
$this->app->singleton(Tenancy::class);
if ($this->bootstrapFeatures) {
if (static::$bootstrapFeatures) {
static::bootstrapFeatures();
}