From 2d12af3491a2742fb3b3ef2f4f773fe57f69a587 Mon Sep 17 00:00:00 2001 From: Angel Fernando Quiroz Campos <1697880+AngelFQC@users.noreply.github.com> Date: Wed, 18 Dec 2024 11:12:03 -0500 Subject: [PATCH] Internal: Remove return type mixed The mixed return type is available from php8.0 --- main/inc/lib/system/session.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/inc/lib/system/session.class.php b/main/inc/lib/system/session.class.php index 414312c4ca..a99b06e7e7 100755 --- a/main/inc/lib/system/session.class.php +++ b/main/inc/lib/system/session.class.php @@ -138,7 +138,7 @@ class Session implements \ArrayAccess #if PHP_VERSION_ID >= 80000 #[\ReturnTypeWillChange] #endif - public function offsetGet($offset): mixed + public function offsetGet($offset) { return self::read($offset); }