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, ]); }