PhpDoc 创建警告,因为它找不到库类
当在项目上启动 phpdocumentor 时,它会创建类似于“解析后”中的警告:
Class ... not found
这些是我使用的所有库类,但我不想要相关的文档。并且 phpdoc 找不到它们。
有没有办法抑制这些警告?
谢谢。
When lauching phpdocumentor on a project, it creates warnings like that in the "Post-parsing" :
Class ... not found
These are all the library classes I use, but I don't want a documentation on that. And phpdoc can't find them.
Is there a way to suppress those warnings ?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,没有办法抑制警告...
不过,一个极端的解决方法是使用一个虚拟文件,其中包含所有“丢失”类的空类声明,其中每个类的文档块使用 @ignore 标记来防止它不会被记录下来......它仍然会被解析,所以不再有警告。
No, there's no way to suppress the warnings...
An extreme workaround, though, would be to have a single dummy file that contains empty class declarations for all the "missing" classes, where each class's docblock uses the @ignore tag to prevent it from being documented... it still gets parsed, so no more warning.