/**
* Configure the command.
*
* @return void
*
* @since 4.0.0
*/
protected function configure() : void
{
$help = "<info>%command.name%</info> will change a user's password\n\t\t\nUsage: <info>php %command.full_name%</info>";
$this->addOption('username', null, InputOption::VALUE_OPTIONAL, 'username');
$this->addOption('password', null, InputOption::VALUE_OPTIONAL, 'password');
$this->setDescription("Change a user's password");
$this->setHelp($help);
}