Skip to content

Commit 7a5f94e

Browse files
authored
Fix PHPCS (#8719)
1 parent d0cf5e0 commit 7a5f94e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

php/libraries/SinglePointLogin.class.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ class SinglePointLogin
178178
// First try JWT authentication, which is cheaper and
179179
// doesn't involve database calls
180180
$headers = getallheaders();
181-
$headers = array_change_key_case($headers, CASE_LOWER);
181+
$headers = array_change_key_case($headers, CASE_LOWER);
182182
$authHeader = isset($headers['authorization'])
183183
? $headers['authorization']
184184
: '';

0 commit comments

Comments
 (0)