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

configure() protected method

protected configure ( )
    protected function configure()
    {
        $this->setName('customer:create')->addArgument('email', InputArgument::OPTIONAL, 'Email')->addArgument('password', InputArgument::OPTIONAL, 'Password')->addArgument('firstname', InputArgument::OPTIONAL, 'Firstname')->addArgument('lastname', InputArgument::OPTIONAL, 'Lastname')->addArgument('website', InputArgument::OPTIONAL, 'Website')->addOption('format', null, InputOption::VALUE_OPTIONAL, 'Output Format. One of [' . implode(',', RendererFactory::getFormats()) . ']')->setDescription('Creates a new customer/user for shop frontend.');
    }