QUESTION 78
You are building CLI that use the console to create a customer account with our custom command as like php bin/magento customer:user:create –customer-firstname=”Mahin” –customer-lastname=”Rahman” –customer-email=”[email protected]” –customer-password=”mahin@123″ –website=”1″
using: protected function configure() { $this->setName(‘customer:user:create’) – >setDescription(‘Create new customer’) ->setDefinition($this->getOptionsList()); } protected function getOptionsList(){ return [
——————]; } Which below Option are not required in blank? (Choose 2)