注释规范

This commit is contained in:
thinkphp
2016-06-20 17:34:54 +08:00
parent 940ed22965
commit a032828d5c
48 changed files with 724 additions and 760 deletions

View File

@@ -11,6 +11,7 @@
namespace think\controller;
use think\Loader;
/**
* ThinkPHP JsonRPC控制器类
*/
@@ -29,7 +30,7 @@ abstract class Jsonrpc
}
//导入类库
\think\Loader::import('vendor.jsonrpc.jsonRPCServer');
Loader::import('vendor.jsonrpc.jsonRPCServer');
// 启动server
\jsonRPCServer::handle($this);
}