From 8b6f160a0f7530e0213e7bd8b5a8ece3c36b632b Mon Sep 17 00:00:00 2001 From: slawkens Date: Mon, 12 Jan 2026 18:59:51 +0100 Subject: [PATCH] Fix php cache get return type --- system/src/Cache/PHP.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/src/Cache/PHP.php b/system/src/Cache/PHP.php index 9b21552b..5c455b7e 100644 --- a/system/src/Cache/PHP.php +++ b/system/src/Cache/PHP.php @@ -45,7 +45,7 @@ class PHP rename($tmp, $file); } - public function get($key): string + public function get($key) { $tmp = ''; if ($this->fetch($key, $tmp)) {