From 069f72329e8ead0c918317308ada381bfab49328 Mon Sep 17 00:00:00 2001 From: Bozhidar Slaveykov Date: Wed, 11 Dec 2024 20:32:04 +0200 Subject: [PATCH] Update MicroweberServiceProvider.php --- .../Microweber/App/Providers/MicroweberServiceProvider.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/web/Modules/Microweber/App/Providers/MicroweberServiceProvider.php b/web/Modules/Microweber/App/Providers/MicroweberServiceProvider.php index f7cbfbb..b79cb09 100644 --- a/web/Modules/Microweber/App/Providers/MicroweberServiceProvider.php +++ b/web/Modules/Microweber/App/Providers/MicroweberServiceProvider.php @@ -7,6 +7,7 @@ use Illuminate\Support\Facades\Blade; use Illuminate\Support\Facades\Event; use Illuminate\Support\ServiceProvider; +use Modules\Microweber\App\Console\Commands\DownloadMicroweber; use Modules\Microweber\App\Console\Commands\ReinstallMicroweberInstallations; use Modules\Microweber\Listeners\DomainIsCreatedListener; use Modules\Microweber\MicroweberApacheVirtualHostConfig; @@ -59,7 +60,8 @@ public function register(): void protected function registerCommands(): void { $this->commands([ - ReinstallMicroweberInstallations::class + ReinstallMicroweberInstallations::class, + DownloadMicroweber::class, ]); }