diff options
| author | Robin Chalas <chalasr@users.noreply.github.com> | 2016-05-14 17:19:26 +0200 | 
|---|---|---|
| committer | Marc Cornellà <marc.cornella@live.com> | 2016-05-14 17:19:26 +0200 | 
| commit | 621eb21139512cb0e00fbc5a9b9d215308eba720 (patch) | |
| tree | 8db1d14e4e17c0976a058c6c22220401438e6615 /plugins/symfony2 | |
| parent | 615af65087d94fd6474f666c1ab0e11efc65a7f5 (diff) | |
| download | zsh-621eb21139512cb0e00fbc5a9b9d215308eba720.tar.gz zsh-621eb21139512cb0e00fbc5a9b9d215308eba720.tar.bz2 zsh-621eb21139512cb0e00fbc5a9b9d215308eba720.zip | |
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.
Diffstat (limited to 'plugins/symfony2')
| -rw-r--r-- | plugins/symfony2/symfony2.plugin.zsh | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/plugins/symfony2/symfony2.plugin.zsh b/plugins/symfony2/symfony2.plugin.zsh index fe236a298..c2a1affad 100644 --- a/plugins/symfony2/symfony2.plugin.zsh +++ b/plugins/symfony2/symfony2.plugin.zsh @@ -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' | 
