PartKeepr\AuthBundle\Command\UnprotectUserCommand::configure PHP Method

configure() public method

public configure ( )
    public function configure()
    {
        parent::configure();
        $this->setName('partkeepr:user:unprotect');
        $this->setDescription('Unprotects a given user against changes');
        $this->addArgument('username', InputArgument::REQUIRED, 'The username to unprotect against changes');
    }
UnprotectUserCommand