PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
vendor
/
botble
/
plugin-management
/
src
/
Providers
<?php namespace Botble\PluginManagement\Providers; use Botble\PluginManagement\Commands\PluginActivateAllCommand; use Botble\PluginManagement\Commands\PluginActivateCommand; use Botble\PluginManagement\Commands\PluginAssetsPublishCommand; use Botble\PluginManagement\Commands\PluginDeactivateCommand; use Botble\PluginManagement\Commands\PluginRemoveCommand; use Illuminate\Support\ServiceProvider; class CommandServiceProvider extends ServiceProvider { public function boot() { if ($this->app->runningInConsole()) { $this->commands([ PluginAssetsPublishCommand::class, ]); } $this->commands([ PluginActivateCommand::class, PluginDeactivateCommand::class, PluginRemoveCommand::class, PluginActivateAllCommand::class, ]); } }
[-] PluginManagementServiceProvider.php
[edit]
[+]
..
[-] HookServiceProvider.php
[edit]
[-] CommandServiceProvider.php
[edit]