DarkaOnLine/L5-Swagger

View on GitHub
tests/storage/annotations/OpenApi/Products/L5SwaggerAnnotationsExampleProducts.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Tests\storage\annotations\OpenApi\Products;

class L5SwaggerAnnotationsExampleProducts
{
    /**
     * @OA\Post(
     *      path="/products",
     *      operationId="getProductsList",
     *      tags={"Products"},
     *      summary="Get list of products",
     *      description="Returns list of products",
     *      @OA\Response(
     *          response=200,
     *          description="successful operation"
     *       )
     *     )
     *
     * Returns list of products
     */
    public function getProductsList()
    {
    }
}