Можно ли связать другой метод/класс/свойство/и т.д. внутри моего проекта внутри тега @deprecated
? Вот так:
/**
* Method description
* @deprecated 1.0 Reason for deprecation, use {@link newMethod()} instead!
* @param string $str
* @param string|null $str2
* @return bool
*/
public function method($str, $str2) {
// TODO: Code...
}
...
?