Caffeinated\Modules\Console\Commands\ModuleListCommand::fire PHP Метод

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

Execute the console command.
public fire ( ) : mixed
Результат mixed
    public function fire()
    {
        $modules = $this->module->all();
        if (count($modules) == 0) {
            return $this->error("Your application doesn't have any modules.");
        }
        $this->displayModules($this->getModules());
    }