Platformsh\Cli\Command\Integration\IntegrationAddCommand::configure PHP Method

configure() protected method

protected configure ( )
    protected function configure()
    {
        $this->setName('integration:add')->setDescription('Add an integration to the project');
        $this->getForm()->configureInputDefinition($this->getDefinition());
        $this->addProjectOption()->addNoWaitOption();
        $this->addExample('Add an integration with a GitHub repository', '--type github --repository myuser/example-repo --token UFpYS1MzQktjNw --fetch-branches 0');
    }
IntegrationAddCommand