for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* TechDivision\Import\Cli\Command\ImportCustomersCommand
*
* PHP version 7
* @author Tim Wagner <[email protected]>
* @copyright 2018 TechDivision GmbH <[email protected]>
* @license https://opensource.org/licenses/MIT
* @link https://github.com/techdivision/import-cli-simple
* @link http://www.techdivision.com
*/
namespace TechDivision\Import\Cli\Command;
use TechDivision\Import\Utils\CommandNames;
* The import command implementation.
class ImportCustomersCommand extends AbstractShortcutAwareImportCommand
{
* Configures the current command.
* @return void
* @see \Symfony\Component\Console\Command\Command::configure()
protected function configure()
// initialize the command with the required/optional options
$this->setName(CommandNames::IMPORT_CUSTOMERS)
->setDescription('Imports customers in the configured Magento 2 instance');
// invoke the parent method
parent::configure();
}