From 7a5f94e38de84074e4ce1c0b9ea119179ff991e8 Mon Sep 17 00:00:00 2001 From: Dave MacFarlane Date: Fri, 2 Jun 2023 09:45:12 -0400 Subject: [PATCH] Fix PHPCS (#8719) --- php/libraries/SinglePointLogin.class.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php/libraries/SinglePointLogin.class.inc b/php/libraries/SinglePointLogin.class.inc index d148d152674..c30665fff2f 100644 --- a/php/libraries/SinglePointLogin.class.inc +++ b/php/libraries/SinglePointLogin.class.inc @@ -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'] : '';