您只需在代码中添加注释(也称为注释),模型示例:
/**
* @SWG\Model(
* id="vps",
* required="['type', 'hostname']",
* @SWG\Property(name="hostname", type="string"),
* @SWG\Property(name="label", type="string"),
* @SWG\Property(name="type", type="string", enum="['vps', 'dedicated']")
* )
*/
class HostVps extends Host implements ResourceInterface
{
// ...
}
控制器示例:
/**
* @SWG\Resource(
* basePath="http://skyapi.dev",
* resourcePath="/vps",
* @SWG\Api(
* path="/vps",
* @SWG\Operation(
* method="GET",
* type="array",
* summary="Fetch vps lists",
* nickname="vps/index",
* @SWG\Parameter(
* name="expand",
* description="Models to expand",
* paramType="query",
* type="string",
* defaultValue="vps,os_template"
* )
* )
* )
* )
*/
class VpsController extends Controller
{
// ...
}
然后在控制台中:
php swagger.phar ./your-code-source/ -o ./directory-for-output-files
然后在 Swagger UI 中链接生成的文件。这是帮助吗?
顺便说一句,此文档:http: //zircote.com/swagger-php/annotations.html不完整。最好依靠解析器错误,例如:
php swagger.phar ./skynode-api/api/ -o ./foo
Swagger-PHP 0.9.0
-----------------
[INFO] Skipping unsupported property: "foo" for @Swagger\Annotations\Property, expecting "name", "description", "type", "format", "items", "uniqueItems", "required", "minimum", "maximum", "enum", "defaultValue", "_partialId", "_partials" in HostVps in /home/kane/some-dir/some-file.php on line 3
编辑:Swagger 2.0在 GitHub 上有很好的规范
顺便说一句,考虑使用Swagger Editor创建 api 规范文件 (json/yaml) 以在 Swagger UI 中使用。因为 php 文件中的内联 SWG 文档很难看,而且您在 IDE 中没有自动完成支持。