Kraken\Console\Client\Command\Process\ProcessCreateCommand::config PHP Method

config() protected method

protected config ( )
    protected function config()
    {
        $this->setName('process:create')->setDescription('Creates process name with given alias in parent scope.');
        $this->addArgument('parent', InputArgument::REQUIRED, 'Alias of parent runtime.');
        $this->addArgument('alias', InputArgument::REQUIRED, 'Alias of new process.');
        $this->addArgument('name', InputArgument::REQUIRED, 'Name of new process.');
        $this->addOption('flags', null, InputOption::VALUE_OPTIONAL, 'Force level.', Runtime::CREATE_DEFAULT);
    }
ProcessCreateCommand