Skip to content

Commit

Permalink
[console] Add missing alias. (#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmolivas committed Jul 13, 2017
1 parent 922ee0c commit e48fb79
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/Command/Debug/SettingsCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ protected function configure()
{
$this
->setName('debug:settings')
->setDescription($this->trans('commands.debug.settings.description'));
->setDescription($this->trans('commands.debug.settings.description'))
->setAliases(['dse']);
;
}

/**
Expand Down
3 changes: 2 additions & 1 deletion src/Command/Debug/SiteCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ public function configure()
$this->trans('commands.debug.site.options.property'),
null
)
->setHelp($this->trans('commands.debug.site.help'));
->setHelp($this->trans('commands.debug.site.help'))
->setAliases(['dsi']);
}

/**
Expand Down

0 comments on commit e48fb79

Please sign in to comment.