Platformsh\Cli\Command\Domain\DomainAddCommand::configure PHP Method

configure() protected method

protected configure ( )
    protected function configure()
    {
        $this->setName('domain:add')->setDescription('Add a new domain to the project');
        $this->addDomainOptions();
        $this->addProjectOption()->addNoWaitOption();
        $this->addExample('Add the domain example.com', 'example.com');
        $this->addExample('Add the domain secure.example.com with SSL enabled', 'secure.example.com --cert secure-example-com.crt --key secure-example-com.key');
    }
DomainAddCommand