| 123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- * @SWG\Info(
- * title="Swagger Petstore",
- * description="A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification",
- * version="1.0.0",
- * @SWG\Contact(
- * email="apiteam@swagger.io",
- * name="Swagger API Team",
- * url="http://swagger.io"
- * ),
- * @SWG\License(
- * name="MIT",
- * url="http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT"
- * ),
- * termsOfService="http://swagger.io/terms/"
- * )
- * @SWG\Swagger(
- * host="petstore.swagger.io",
- * basePath="/api",
- * schemes={"http"},
- * produces={"application/json"},
- * consumes={"application/json"},
- * @SWG\ExternalDocumentation(
- * description="find more info here",
- * url="https://swagger.io/about"
- * )
- * )
- */
|