From 7bdeb4d66468b1d46703b726d21ef3ad800fcc8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Sun, 8 Sep 2019 15:07:05 +0200 Subject: [PATCH] artisan attribute --- src/TenantManagerv2.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/TenantManagerv2.php b/src/TenantManagerv2.php index 1ef50505..8b7a0a6c 100644 --- a/src/TenantManagerv2.php +++ b/src/TenantManagerv2.php @@ -28,6 +28,9 @@ class TenantManagerv2 /** @var Contracts\StorageDriver */ protected $storage; + /** @var Artisan */ + protected $artisan; + // todo event "listeners" instead of "callbacks" /** @var callable[][] */ protected $callbacks = []; @@ -36,6 +39,7 @@ class TenantManagerv2 { $this->app = $app; $this->storage = $storage; + $this->artisan = $artisan; $this->bootstrapFeatures(); }