mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-05 16:34:04 +00:00
Don't access static property as non-static
This commit is contained in:
parent
e75aefb65e
commit
3e6dd646ae
1 changed files with 1 additions and 1 deletions
|
|
@ -26,7 +26,7 @@ class TenancyServiceProvider extends ServiceProvider
|
||||||
// Make sure Tenancy is stateful.
|
// Make sure Tenancy is stateful.
|
||||||
$this->app->singleton(Tenancy::class);
|
$this->app->singleton(Tenancy::class);
|
||||||
|
|
||||||
if ($this->bootstrapFeatures) {
|
if (static::$bootstrapFeatures) {
|
||||||
static::bootstrapFeatures();
|
static::bootstrapFeatures();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue