diff --git a/src/Features/ViteBundler.php b/src/Features/ViteBundler.php index 76b96a48..928de8f5 100644 --- a/src/Features/ViteBundler.php +++ b/src/Features/ViteBundler.php @@ -12,7 +12,12 @@ use Stancl\Tenancy\Vite as StanclVite; class ViteBundler implements Feature { - public function __construct(protected Application $app) { } + protected Application $app; + + public function __construct(Application $app) + { + $this->app = $app; + } public function bootstrap(Tenancy $tenancy): void {