所以,基本上我有以下设置:
class A {
/**
* This is some documentation
*/
public function foo() {}
}
class B extends A {
/**
* This documentation is way more specific than in class A
*/
public function foo() {}
}
当我尝试使用 phpDocumentor2 对此进行记录时,它会在 B 类的方法 foo() 中显示“这是一些文档”,但是我想说“此文档比 A 类更具体”。在 phpDocumenter 1 中,一切看起来都像预期的那样。那么,这里发生了什么?这是 phpDocumentor2 的新默认行为吗?如果是这样,有没有办法改变它?或者这只是一个错误?
注意:在进行研究时,我经常碰到 {@inheritDoc},但我希望有完全相反的行为。