| 123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- * @OA\Info(
- * title="Testing annotations from bugreports",
- * version="1.0.0"
- * )
- */
- /**
- * @OA\Get(
- * path="/api/endpoint",
- * @OA\Parameter(name="filter",in="query", @OA\JsonContent(
- * @OA\Property(property="type", type="string"),
- * @OA\Property(property="color", type="string"),
- * )),
- * @OA\Response(response=200, description="Success")
- * )
- */
-
- /**
- * @OA\Server(
- * url="{schema}://host.dev",
- * description="OpenApi parameters",
- * @OA\ServerVariable(
- * serverVariable="schema",
- * enum={"https", "http"},
- * default="https"
- * )
- * )
- */
|