Platformsh\Cli\Command\User\UserDeleteCommand::configure PHP Метод

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

protected configure ( )
    protected function configure()
    {
        $this->setName('user:delete')->setDescription('Delete a user')->addArgument('email', InputArgument::REQUIRED, "The user's email address");
        $this->addProjectOption()->addNoWaitOption();
        $this->addExample('Delete Alice from the project', '[email protected]');
    }
UserDeleteCommand