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

configure() public method

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