Internal: Remove return type mixed

The mixed return type is available from php8.0
pull/5989/head
Angel Fernando Quiroz Campos 9 months ago
parent d617e04be7
commit 2d12af3491
No known key found for this signature in database
GPG Key ID: B284841AE3E562CD
  1. 2
      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);
}

Loading…
Cancel
Save