@@ -635,4 +635,84 @@ public function withCorsAttribute(): DataResponse {
635635 public function docsParsingStatuscode (string $ param ): DataResponse {
636636 return new DataResponse ();
637637 }
638+
639+ /**
640+ * A deprecated POST route
641+ *
642+ * @param bool $active Not deprecated
643+ * @return DataResponse<Http::STATUS_OK, list<empty>, array{}>
644+ * @deprecated 1.0.0 Use {@see SettingsController::trueFalseParameter()} instead
645+ *
646+ * 200: Admin settings updated
647+ */
648+ public function deprecatedRoute (bool $ active ): DataResponse {
649+ return new DataResponse ();
650+ }
651+
652+ /**
653+ * A deprecated GET route
654+ *
655+ * @param bool $active Not deprecated
656+ * @return DataResponse<Http::STATUS_OK, list<empty>, array{}>
657+ * @deprecated 1.0.0 Use {@see SettingsController::trueFalseParameter()} instead
658+ *
659+ * 200: Admin settings updated
660+ */
661+ public function deprecatedRouteGet (bool $ active ): DataResponse {
662+ return new DataResponse ();
663+ }
664+
665+ /**
666+ * A deprecated parameter does not deprecate the POST method
667+ *
668+ * @param bool $active Not deprecated
669+ * @param bool $deprecated boolean @deprecated This parameter will be removed in a future version
670+ * @return DataResponse<Http::STATUS_OK, list<empty>, array{}>
671+ *
672+ * 200: Admin settings updated
673+ */
674+ public function deprecatedParameter (bool $ active , bool $ deprecated ): DataResponse {
675+ return new DataResponse ();
676+ }
677+
678+ /**
679+ * A deprecated parameter does not deprecate the GET method
680+ *
681+ * @param bool $active Not deprecated
682+ * @param bool $deprecated boolean @deprecated This parameter will be removed in a future version
683+ * @return DataResponse<Http::STATUS_OK, list<empty>, array{}>
684+ *
685+ * 200: Admin settings updated
686+ */
687+ public function deprecatedParameterGet (bool $ active , bool $ deprecated ): DataResponse {
688+ return new DataResponse ();
689+ }
690+
691+ /**
692+ * A deprecated parameter on a deprecated POST method
693+ *
694+ * @param bool $active Not deprecated
695+ * @param bool $deprecated boolean @deprecated This parameter will be removed in a future version
696+ * @return DataResponse<Http::STATUS_OK, list<empty>, array{}>
697+ * @deprecated 1.0.0 Use {@see SettingsController::trueFalseParameter()} instead
698+ *
699+ * 200: Admin settings updated
700+ */
701+ public function deprecatedRouteAndParameter (bool $ active , bool $ deprecated ): DataResponse {
702+ return new DataResponse ();
703+ }
704+
705+ /**
706+ * A deprecated parameter on a deprecated GET method
707+ *
708+ * @param bool $active Not deprecated
709+ * @param bool $deprecated boolean @deprecated This parameter will be removed in a future version
710+ * @return DataResponse<Http::STATUS_OK, list<empty>, array{}>
711+ * @deprecated 1.0.0 Use {@see SettingsController::trueFalseParameter()} instead
712+ *
713+ * 200: Admin settings updated
714+ */
715+ public function deprecatedRouteAndParameterGet (bool $ active , bool $ deprecated ): DataResponse {
716+ return new DataResponse ();
717+ }
638718}
0 commit comments