Kraken\Console\Client\Command\Thread\ThreadDestroyCommand::config PHP Метод

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

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