for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* TechDivision\Import\Cli\Command\ImportProductsUrlCommand
*
* PHP version 7
* @author Tim Wagner <[email protected]>
* @copyright 2020 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 for importing product URL keys.
class ImportProductsUrlCommand 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_PRODUCTS_URL)
->setDescription('Imports product URLs in the configured Magento 2 instance');
// invoke the parent method
parent::configure();
}