标签: php annotations phpdoc
我可以为PHP方法设置@deprecated注释:
@deprecated
/** * @deprecated */ public function deprecatedMethod() { }
如何将带注释的@method标记为已弃用?
@method
/** * @method deprecatedMethod() */ class Foo {...}