Nwidart\Modules\Commands\PublishConfigurationCommand::fire PHP Метод

fire() публичный Метод

Execute the console command.
public fire ( ) : mixed
Результат mixed
    public function fire()
    {
        if ($module = $this->argument('module')) {
            $this->publishConfiguration($module);
            return;
        }
        foreach ($this->laravel['modules']->enabled() as $module) {
            $this->publishConfiguration($module->getName());
        }
    }