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

config() protected method

protected config ( )
    protected function config()
    {
        $this->setName('process:exists')->setDescription('Checks if process with given alias exists in parent scope.');
        $this->addArgument('parent', InputArgument::REQUIRED, 'Alias of parent runtime.');
        $this->addArgument('alias', InputArgument::REQUIRED, 'Alias of process to check.');
    }
ProcessExistsCommand