DarkaOnLine/L5-Swagger

View on GitHub
tests/storage/annotations/OpenApi/Clients/L5SwaggerAnnotationsExampleClients.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Tests\storage\annotations\OpenApi\Clients;

class L5SwaggerAnnotationsExampleClients
{
    /**
     * @OA\Get(
     *      path="/clients",
     *      operationId="getClientsList",
     *      tags={"Clients"},
     *      summary="Get list of clients",
     *      description="Returns list of clients",
     *      @OA\Response(
     *          response=200,
     *          description="successful operation"
     *       )
     *     )
     *
     * Returns list of clients
     */
    public function getClientsList()
    {
    }
}