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

Pass $this to bootstrap()

This commit is contained in:
Samuel Štancl 2019-09-08 11:12:35 +02:00
parent 805644f85b
commit d68d221c4f

View file

@ -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;