如何表明该方法是 PHPDoc 接口的一部分?
例如:
/**
* @implements BarInterface
*/
class Foo implements BarInterface
{
/**
* @thisMethodIsHereBecauseItIsAPartOf("BarInterface")
*/
public function doBar()
{
}
}
有什么合适的可以代替@thisMethodIsHereBecauseItIsAPartOf("BarInterface")
吗?