0

我一直在使用@var标签记录类属性,但是当我运行 phpdoc 来生成文档时它会抱怨No DocBlock was found for property $someProperty

例如:

class MyClass {
   /**
    * Some property that should be documented
    *
    * @var mixed $someProperty
    */
   protected $someProperty; 

   .
   .
   .

}
4

1 回答 1

1

原来,phpdoc 安装在某种程度上被破坏了。卸载然后安装干净修复了错误。

于 2012-06-18T23:11:05.340 回答