Skip to content

Commit

Permalink
chore(deps): Update openapi-extractor to v1.3.0
Browse files Browse the repository at this point in the history
Signed-off-by: provokateurin <[email protected]>
  • Loading branch information
provokateurin committed Jan 25, 2025
1 parent d4403cf commit 664cb4a
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 26 deletions.
6 changes: 3 additions & 3 deletions lib/Controller/SigningController.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ protected function resetAllSignaturesEvent(): SignaturesResetEvent {
* As a logged in user sign the terms
*
* @param int $termId The terms the user signed
* @return DataResponse<Http::STATUS_OK, array<empty>, array{}>
* @return DataResponse<Http::STATUS_OK, list<empty>, array{}>
*
* 200: Signed successfully
*/
Expand Down Expand Up @@ -102,7 +102,7 @@ public function signTerms(int $termId): DataResponse {
/**
* As a guest sign the terms
*
* @return DataResponse<Http::STATUS_OK, array<empty>, array{}>
* @return DataResponse<Http::STATUS_OK, list<empty>, array{}>
*
* 200: Signed successfully
*/
Expand All @@ -120,7 +120,7 @@ public function signTermsPublic(): DataResponse {
/**
* Reset the signatories of all accounts
*
* @return DataResponse<Http::STATUS_OK, array<empty>, array{}>
* @return DataResponse<Http::STATUS_OK, list<empty>, array{}>
*
* 200: Reset successfully
*/
Expand Down
4 changes: 2 additions & 2 deletions lib/Controller/TermsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public function getAdminFormData(): DataResponse {
* Delete a given Term by id
*
* @param positive-int $id The terms which should be deleted
* @return DataResponse<Http::STATUS_OK, array<empty>, array{}>
* @return DataResponse<Http::STATUS_OK, list<empty>, array{}>
*
* 200: Deleted successfully
*/
Expand All @@ -157,7 +157,7 @@ protected function createTermsCreatedEvent(): TermsCreatedEvent {
* @param string $countryCode One of the 2-letter region codes or `--` for "global"
* @param string $languageCode One of the 2-letter language codes
* @param string $body The actual terms and conditions text (can be markdown, using headers, basic text formating, lists and links)
* @return DataResponse<Http::STATUS_OK, TermsOfServiceTerms, array{}>|DataResponse<Http::STATUS_EXPECTATION_FAILED, array<empty>, array{}>
* @return DataResponse<Http::STATUS_OK, TermsOfServiceTerms, array{}>|DataResponse<Http::STATUS_EXPECTATION_FAILED, list<empty>, array{}>
*
* 200: Created successfully
* 417: Country or language code was not a valid option
Expand Down
46 changes: 25 additions & 21 deletions vendor-bin/openapi-extractor/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 664cb4a

Please sign in to comment.