From f9e027757fa8a6b9ac53983425f0f51687ec0755 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Thu, 23 Feb 2023 16:23:22 +0100 Subject: [PATCH] Update ViteBundler constructor --- src/Features/ViteBundler.php | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/Features/ViteBundler.php b/src/Features/ViteBundler.php index 34b118e7..dbe6651b 100644 --- a/src/Features/ViteBundler.php +++ b/src/Features/ViteBundler.php @@ -11,12 +11,9 @@ use Stancl\Tenancy\Vite; class ViteBundler implements Feature { - /** @var Application */ - protected $app; - - public function __construct(Application $app) - { - $this->app = $app; + public function __construct( + protected Application $app + ) { } public function bootstrap(): void