Add D7 aliases

This commit is contained in:
Oliver Davies 2020-02-09 21:49:34 +00:00
parent a186fcf721
commit 88147ec4e5

View file

@ -49,8 +49,10 @@ final class GenerateDrupal7Command extends Command
protected function configure() protected function configure()
{ {
$this $this
->setDescription('Generate a new Drupal 7 module.') ->setDescription('Generate a new Drupal 7 module')
->addArgument('module-name', InputArgument::REQUIRED, 'The name of the module to create'); ->addArgument('module-name', InputArgument::REQUIRED, 'The name of the module to create')
->setAliases(['d7', 'drupal7'])
;
} }
/** /**