Microweber\Commands\InstallCommand::fire PHP Method

fire() public method

public fire ( )
    public function fire()
    {
        $input = array('make_install' => true, 'db_host' => $this->argument('db_host'), 'db_name' => $this->argument('db_name'), 'db_user' => $this->argument('db_user'), 'db_pass' => $this->argument('db_pass'), 'db_driver' => $this->argument('db_driver'), 'table_prefix' => $this->option('prefix'), 'admin_email' => $this->argument('email'), 'admin_username' => $this->argument('username'), 'admin_password' => $this->argument('password'), 'with_default_content' => $this->option('default-content'), 'default_template' => $this->option('template'));
        $this->info('Installing Microweber...');
        $result = $this->installer->index($input);
        $this->info($result);
    }