Kraken\Console\Client\Command\Runtime\RuntimeDestroyCommand::config PHP Метод

config() защищенный Метод

protected config ( )
    protected function config()
    {
        $this->setName('runtime:destroy')->setDescription('Destroys runtime with given alias in parent scope.');
        $this->addArgument('parent', InputArgument::REQUIRED, 'Alias of parent runtime.');
        $this->addArgument('alias', InputArgument::REQUIRED, 'Alias of runtime to be destroyed.');
        $this->addOption('flags', null, InputOption::VALUE_OPTIONAL, 'Force level.', Runtime::DESTROY_FORCE_SOFT);
    }
RuntimeDestroyCommand