| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- /**
- * @license Apache 2.0
- */
- /**
- * @OA\Info(
- * description="This is a sample 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/).",
- * version="1.0.0",
- * title="Swagger Petstore",
- * termsOfService="http://swagger.io/terms/",
- * @OA\Contact(
- * email="apiteam@swagger.io"
- * ),
- * @OA\License(
- * name="Apache 2.0",
- * url="http://www.apache.org/licenses/LICENSE-2.0.html"
- * )
- * )
- */
- /**
- * @OA\Tag(
- * name="pet",
- * description="Everything about your Pets",
- * @OA\ExternalDocumentation(
- * description="Find out more",
- * url="http://swagger.io"
- * )
- * )
- * @OA\Tag(
- * name="store",
- * description="Access to Petstore orders",
- * )
- * @OA\Tag(
- * name="user",
- * description="Operations about user",
- * @OA\ExternalDocumentation(
- * description="Find out more about store",
- * url="http://swagger.io"
- * )
- * )
- * @OA\Server(
- * description="SwaggerHUB API Mocking",
- * url="https://virtserver.swaggerhub.com/swagger/Petstore/1.0.0"
- * )
- * @OA\ExternalDocumentation(
- * description="Find out more about Swagger",
- * url="http://swagger.io"
- * )
- */
|