On OpenAPI v2.0 and Swagger PHP the annotation for Produces was:
/**
* @SWG\Get(
* path="/posts",
* operationId="getPosts",
* tags={"Authentication"},
* produces="application/json"
* summary="Returns the posts",
* description="Returns the posts",
* @SWG\Response(
* response=200,
* description="Successful operation"
* ),
* )
*/
But On OpenAPI v3.0 and Swagger PHP I cannot find on how to annotate the produces on the documentation it states the it is now an attribute of the response @OA\Response
but I can not find an example I already try just putting "content" = "application/json"
but it doesn't work.