We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 880df7a commit b7a4a47Copy full SHA for b7a4a47
1 file changed
modules/openapi-generator/src/main/resources/php-slim4-server/register_routes.mustache
@@ -206,19 +206,19 @@ class RegisterRoutes
206
'header' => $authMethod['keyParamName'],
207
'parameter' => null,
208
'cookie' => null,
209
- ]
+ ];
210
} else if ($authMethod['isKeyInQuery']) {
211
$authenticatorConfig = [
212
'header' => null,
213
'parameter' => $authMethod['keyParamName'],
214
215
216
} else if ($authMethod['isKeyInCookie']) {
217
218
219
220
'cookie' => $authMethod['keyParamName'],
221
222
}
223
$route->add(new TokenAuthentication($authenticatorConfig));
224
0 commit comments