Fix deprecated usage (#5050)

When using the command alias `sfcontainer` or `sfrouter`, the following warning occurs:

> ! [CAUTION] The use of "container:debug" command is deprecated since version 2.7 and will be removed in 3.0. Use the
> ! "debug:container" instead.
This commit is contained in:
Robin Chalas 2016-05-14 17:19:26 +02:00 committed by Marc Cornellà
parent 615af65087
commit 621eb21139
1 changed files with 2 additions and 2 deletions

View File

@ -22,8 +22,8 @@ alias sf='`_symfony_console`'
alias sfcl='sf cache:clear'
alias sfsr='sf server:run -vvv'
alias sfcw='sf cache:warmup'
alias sfroute='sf router:debug'
alias sfcontainer='sf container:debug'
alias sfroute='sf debug:router'
alias sfcontainer='sf debug:container'
alias sfgb='sf generate:bundle'
alias sfdev='sf --env=dev'
alias sfprod='sf --env=prod'