Platformsh\Cli\Command\Environment\EnvironmentMergeCommand::configure PHP Метод

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

protected configure ( )
    protected function configure()
    {
        $this->setName('environment:merge')->setAliases(['merge'])->setDescription('Merge an environment')->addArgument('environment', InputArgument::OPTIONAL, 'The environment to merge');
        $this->addProjectOption()->addEnvironmentOption()->addNoWaitOption();
        $this->addExample('Merge the environment "sprint-2" into its parent', 'sprint-2');
        $this->setHelp('This command will initiate a Git merge of the specified environment into its parent environment.');
    }
EnvironmentMergeCommand