Skip to content

Commit

Permalink
Fix PHPCS (#8719)
Browse files Browse the repository at this point in the history
  • Loading branch information
driusan authored Jun 2, 2023
1 parent d0cf5e0 commit 7a5f94e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion php/libraries/SinglePointLogin.class.inc
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ class SinglePointLogin
// First try JWT authentication, which is cheaper and
// doesn't involve database calls
$headers = getallheaders();
$headers = array_change_key_case($headers, CASE_LOWER);
$headers = array_change_key_case($headers, CASE_LOWER);
$authHeader = isset($headers['authorization'])
? $headers['authorization']
: '';
Expand Down

0 comments on commit 7a5f94e

Please sign in to comment.