| 123456789101112131415161718192021222324252627282930313233 |
- <?php
- /**
- * @SWG\Swagger(
- * basePath="/api",
- * host="petstore.swagger.io",
- * schemes={"http"},
- * produces={"application/json"},
- * consumes={"application/json"},
- * @SWG\Info(
- * version="1.0.0",
- * title="Swagger Petstore",
- * description="A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification",
- * termsOfService="http://swagger.io/terms/",
- * @SWG\Contact(name="Swagger API Team"),
- * @SWG\License(name="MIT")
- * ),
- * @SWG\Definition(
- * definition="ErrorModel",
- * type="object",
- * required={"code", "message"},
- * @SWG\Property(
- * property="code",
- * type="integer",
- * format="int32"
- * ),
- * @SWG\Property(
- * property="message",
- * type="string"
- * )
- * )
- * )
- */
|