Nwidart\Modules\Commands\InstallCommand::fire PHP Méthode

fire() public méthode

Execute the console command.
public fire ( ) : mixed
Résultat mixed
    public function fire()
    {
        if (is_null($this->argument('name'))) {
            $this->installFromFile();
            return;
        }
        $this->install($this->argument('name'), $this->argument('version'), $this->option('type'), $this->option('tree'));
    }