Microweber\Commands\OptionCommand::fire PHP Метод

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

public fire ( )
    public function fire()
    {
        $input = array('option_key' => $this->argument('option_key'), 'option_value' => $this->argument('option_value'), 'option_group' => $this->argument('option_group'));
        $this->info('Setting option...');
        $result = mw()->option_manager->save($input);
        $this->info($result);
    }