From d68d221c4ffbc32749029ff0bdec3dca3c18f6b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Sun, 8 Sep 2019 11:12:35 +0200 Subject: [PATCH] Pass $this to bootstrap() --- src/TenantManagerv2.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TenantManagerv2.php b/src/TenantManagerv2.php index 11b6c797..ee22f204 100644 --- a/src/TenantManagerv2.php +++ b/src/TenantManagerv2.php @@ -131,7 +131,7 @@ class TenantManagerv2 protected function bootstrapFeatures(): self { foreach ($this->app['config']['tenancy.features'] as $feature) { - $this->app[$feature]->bootstrap(); + $this->app[$feature]->bootstrap($this); } return $this;