Skip to content

Commit

Permalink
string -> bool
Browse files Browse the repository at this point in the history
  • Loading branch information
tischsoic committed Aug 27, 2024
1 parent dab22d3 commit d860b11
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib/Server/Controller/Language.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
new Model\Parameter(
name: 'Accept',
in: 'header',
required: 'true',
required: true,
description: 'If set, the list is returned in XML or JSON format.',
schema: [
'type' => 'string',
Expand Down Expand Up @@ -67,7 +67,7 @@
new Model\Parameter(
name: 'Accept',
in: 'header',
required: 'true',
required: true,
description: 'If set, the language is returned in XML or JSON format.',
schema: [
'type' => 'string',
Expand All @@ -76,7 +76,7 @@
new Model\Parameter(
name: 'code',
in: 'path',
required: 'true',
required: true,
schema: [
'type' => 'string',
],
Expand Down

0 comments on commit d860b11

Please sign in to comment.