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