N98\Magento\Command\Customer\ChangePasswordCommand::configure PHP Method

configure() protected method

protected configure ( )
    protected function configure()
    {
        $this->setName('customer:change-password')->addArgument('email', InputArgument::OPTIONAL, 'Email')->addArgument('password', InputArgument::OPTIONAL, 'Password')->addArgument('website', InputArgument::OPTIONAL, 'Website of the customer')->setDescription('Changes the password of a customer.');
        $help = <<<HELP
- Website parameter must only be given if more than one websites are available.
HELP;
        $this->setHelp($help);
    }
ChangePasswordCommand