@@ -415,7 +415,7 @@ public function actionAcceptInvitation()
415415 );
416416 }
417417
418- /**
418+ /**
419419 * Endpoint for performance testing.
420420 * @POST
421421 * @param int $a
@@ -428,4 +428,50 @@ public function actionTestLoose(int $a, ?string $email)
428428 {
429429 $ this ->sendSuccessResponse ("OK " );
430430 }
431+
432+
433+ /**
434+ * Endpoint for performance testing.
435+ * @POST
436+ * @param string $a
437+ * @param string $b
438+ * @param ?string $c
439+ * @param ?string $d
440+ * @param ?string $e
441+ * @throws BadRequestException
442+ * @throws InvalidArgumentException
443+ */
444+ public function actionTest5UrlLoose (string $ a , string $ b , ?string $ c , ?string $ d , ?string $ e )
445+ {
446+ $ this ->sendSuccessResponse ("OK " );
447+ }
448+
449+ /**
450+ * Endpoint for performance testing.
451+ * @POST
452+ * @Param(type="post", name="a", validation="string")
453+ * @Param(type="post", name="b", validation="string")
454+ * @Param(type="post", name="c", validation="string")
455+ * @Param(type="post", name="d", validation="string")
456+ * @Param(type="post", name="e", validation="string")
457+ * @throws BadRequestException
458+ * @throws InvalidArgumentException
459+ */
460+ public function actionTest5BodyLoose ()
461+ {
462+ $ this ->sendSuccessResponse ("OK " );
463+ }
464+
465+ /**
466+ * Endpoint for performance testing.
467+ * @POST
468+ * @Param(type="post", name="a", validation="string")
469+ * @Param(type="post", name="nested")
470+ * @throws BadRequestException
471+ * @throws InvalidArgumentException
472+ */
473+ public function actionTest5BodyLooseNested ()
474+ {
475+ $ this ->sendSuccessResponse ("OK " );
476+ }
431477}
0 commit comments