| 1234567891011121314151617181920212223242526 |
- <?php
- /**
- * @SWG\Swagger(
- * schemes={"http"},
- * host="petstore.swagger.io",
- * basePath="/v2",
- * @SWG\Info(
- * version="1.0.0",
- * title="Swagger Petstore",
- * description="This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.",
- * termsOfService="http://swagger.io/terms/",
- * @SWG\Contact(
- * email="apiteam@swagger.io"
- * ),
- * @SWG\License(
- * name="Apache 2.0",
- * url="http://www.apache.org/licenses/LICENSE-2.0.html"
- * )
- * ),
- * @SWG\ExternalDocumentation(
- * description="Find out more about Swagger",
- * url="http://swagger.io"
- * )
- * )
- */
|