From 821b446852939ed7d55f650f4a784c0df1ac5c26 Mon Sep 17 00:00:00 2001 From: Andreas Hennings Date: Thu, 14 Nov 2024 01:05:10 +0100 Subject: [PATCH] Issue #56: The CoolJwt::getKey() method does not need to be public. --- src/Service/CoolJwt.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Service/CoolJwt.php b/src/Service/CoolJwt.php index 277a412f..7c173e28 100644 --- a/src/Service/CoolJwt.php +++ b/src/Service/CoolJwt.php @@ -44,7 +44,7 @@ public function __construct( * @return string * The key value. */ - public function getKey() { + protected function getKey() { $default_config = $this->configFactory->get('collabora_online.settings'); $key_id = $default_config->get('cool')['key_id'];