PHP: set @deprecated annotation for annotated @method -
i can set @deprecated annotation php method:
/** * @deprecated */ public function deprecatedmethod() { } how can mark annotated @method deprecated?
/** * @method deprecatedmethod() */ class foo {...}
Comments
Post a Comment