Skip to content

Commit

Permalink
Adding Override Aliases and add aliases to chain command. (#191)
Browse files Browse the repository at this point in the history
  • Loading branch information
acidaniel authored and jmolivas committed Jul 13, 2017
1 parent 03a2c9e commit 922ee0c
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
33 changes: 33 additions & 0 deletions config/dist/aliases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,36 @@ commands:
aliases:
debug:container:
- cod
config:edit:
- cdit
cron:execute:
- cre
cron:release:
- crr
database:log:clear:
- dbc
debug:module:
- mod
debug:multisite:
- msd
debug:router:
- rod
debug:theme:
- tde
debug:update:
- upd
multisite:new:
- sn
router:rebuild:
- ror
user:login:clear:attempts:
- uslca
user:login:url:
- usli
user:password:hash:
- usph
user:password:reset:
- upsr
views:disable:
- vdi

3 changes: 2 additions & 1 deletion src/Command/Debug/ChainCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ protected function configure()
{
$this
->setName('debug:chain')
->setDescription($this->trans('commands.debug.chain.description'));
->setDescription($this->trans('commands.debug.chain.description'))
->setAliases(['dch']);
}

/**
Expand Down

0 comments on commit 922ee0c

Please sign in to comment.