When we deprecate a function or method, we also document the replacement to use. For example, ```php /** * @deprecated Use bar instead */ function foo() {} ``` Currently when `foo` is used in the code, this rule only says `foo` is deprecated. ``` Call to deprecated function foo() ``` It would be very useful if it shows the deprecation text `Use bar instead` in the message as well. ``` Call to deprecated function foo(). Use bar instead. ```