Caffeinated\Modules\Console\Commands\ModuleListCommand::fire PHP Method

fire() public method

Execute the console command.
public fire ( ) : mixed
return 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());
    }