I am using aptana editor which automatically adds phpdoc in implementation class’s method like
/**
* (non-PHPdoc)
@see trunk/library/Storage_interface::get()
*/
As you can see, Storage_interface is the main interface class. Now lets say there is a change in interface class name. How can I reflect modified name in all implemented methods comments? Is there any way other than manual update?
Presumably, this autopopulation of the @see tag in that docblock is the result of this empty docblock being auto-generated above the same named method (get()) of this child class / implementor class. As such, if you were to change the method name in the parent class or the interface, then you MUST also change the method name in the code here. So, it’s still up to you to update this docblock with the new method name in the @see link.