Skip to content

Commit

Permalink
Replacing try/catch with Throwable (implements both Error and Excepti…
Browse files Browse the repository at this point in the history
…on) - part 2
  • Loading branch information
killua-eu committed Jan 27, 2025
1 parent fe14765 commit b7e72bb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions glued/Controllers/AuthProxyController.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ public function health(Request $request, Response $response, array $args = []):

$ret = [
'authProxyConfig' => $this->settings['oidc'],
'oidcConfiguration' => $oidcConfiguration,
'oidcJwks' => $oidcJwks,
'oicdJwk' => $oidcJwk,
'oidcConfiguration' => $oidcConfiguration ?? false,
'oidcJwks' => $oidcJwks ?? false,
'oicdJwk' => $oidcJwk ?? false,
'rawToken' => $rawToken ?? '',
'parsedTokenClaims' => $claims ?? '',
'parsedTokenHeaders' => $headers ?? '',
Expand Down

0 comments on commit b7e72bb

Please sign in to comment.