container = $container; } /** * PATCH call123TestSpecialTags * Summary: To test special tags * Notes: To test special tags and operation ID starting with number * Output-Formats: [application/json] * * @param \Psr\Http\Message\ServerRequestInterface $request Request * @param \Psr\Http\Message\ResponseInterface $response Response * @param array|null $args Path arguments * * @return \Psr\Http\Message\ResponseInterface */ public function call123TestSpecialTags($request, $response, $args) { $body = $request->getParsedBody(); $message = "How about implementing call123TestSpecialTags as a PATCH method in OpenAPIServer\Api\AnotherFakeApi class?"; throw new \Exception($message); return $response->write($message)->withStatus(501); } }