You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, we have @alias annotation for addling alias. It's example usage can be seen here
Similarly, we need a @deprecated-alias specifically for commands which have been renamed and the old name is deprecated. It's example usage can be like:
/**
* @deprecated-alias create
*/
public function add() {
}
It's functionality should be similar to alias, but it should also show an warning that:
Warning: "ee <command> create" has been deprecated and has been replaced by "ee <command> add"
The text was updated successfully, but these errors were encountered:
Right now, we have
@alias
annotation for addling alias. It's example usage can be seen hereSimilarly, we need a
@deprecated-alias
specifically for commands which have been renamed and the old name is deprecated. It's example usage can be like:It's functionality should be similar to alias, but it should also show an warning that:
The text was updated successfully, but these errors were encountered: