mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 00:40:07 +00:00
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:
parent
615af65087
commit
621eb21139
1 changed files with 2 additions and 2 deletions
|
@ -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'
|
||||
|
|
Loading…
Reference in a new issue