Open
Description
Per now the devhub doesn't play well with deprecated parameters for function calls, an example of this would be the get_the_author
function which used to have a parameter.
The parser currently picks these up as Required, which is a little bit unlucky.
Deprecated parameters seem to consistently be defined with @param $var Deprecated
, so detecting these shouldn't be an issue, but how should we relay that to the user in a clear manner, and in such a way that it doesn't accidentally get read as the whole function being deprecated which the current use of $deprecated
as the parameter name might lead to.