DarkaOnLine/L5-Swagger

View on GitHub
tests/storage/annotations/OpenApi/L5SwaggerAnnotationsExampleTag.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Tests\storage\annotations\OpenApi;

/**
 * @OA\Tag(
 *     name="project",
 *     description="Everything about your Projects",
 *     @OA\ExternalDocumentation(
 *         description="Find out more",
 *         url="https://swagger.io"
 *     )
 * )
 *
 * @OA\Tag(
 *     name="user",
 *     description="Operations about user",
 *     @OA\ExternalDocumentation(
 *         description="Find out more about",
 *         url="https://swagger.io"
 *     )
 * )
 * @OA\ExternalDocumentation(
 *     description="Find out more about Swagger and OpenApi",
 *     url="https://swagger.io"
 * )
 */
class L5SwaggerAnnotationsExampleTag
{
}