PHPDocumenter class 没有摘要
PHPDocumenter No summary for class
我正在使用 PHPDocuementer,我不断收到这些消息 类:
Parsing /code/vendor/prodigyview/helium/app.class.php
No summary for class \prodigyview\helium\He2App
但是当代码如下:
<?php
/**
* The main application for instantiaing the He2MVC Framework and bringing together the parts required for the system to work.
*
* The application is what is called with Helium is first initiliaed in the frontend controller. It will autoload the components,
* set the registry and then send the application into the router. The boostrap of the framework should be called sometime during
* this point.
*
* @package prodigyview\helium
*/
namespace prodigyview\helium;
class He2App extends \PVStaticInstance {
}
我是不是漏掉了什么?
您拥有的一个文档块应该向下移动到 class
行的正上方。它的当前位置被解释为文件级文档块而不是 class 级文档块。
执行此操作后,您可能开始看到有关缺少文件级文档块的警告。只需在当前示例所在的同一位置添加一个新的文档块。您可以使用上面已有的副本的精确副本,因为它的内容似乎适合该文件以及 class.
我正在使用 PHPDocuementer,我不断收到这些消息 类:
Parsing /code/vendor/prodigyview/helium/app.class.php
No summary for class \prodigyview\helium\He2App
但是当代码如下:
<?php
/**
* The main application for instantiaing the He2MVC Framework and bringing together the parts required for the system to work.
*
* The application is what is called with Helium is first initiliaed in the frontend controller. It will autoload the components,
* set the registry and then send the application into the router. The boostrap of the framework should be called sometime during
* this point.
*
* @package prodigyview\helium
*/
namespace prodigyview\helium;
class He2App extends \PVStaticInstance {
}
我是不是漏掉了什么?
您拥有的一个文档块应该向下移动到 class
行的正上方。它的当前位置被解释为文件级文档块而不是 class 级文档块。
执行此操作后,您可能开始看到有关缺少文件级文档块的警告。只需在当前示例所在的同一位置添加一个新的文档块。您可以使用上面已有的副本的精确副本,因为它的内容似乎适合该文件以及 class.