diff --git a/snappymail/v/0.0.0/app/libraries/RainLoop/Config/AbstractConfig.php b/snappymail/v/0.0.0/app/libraries/RainLoop/Config/AbstractConfig.php index 86630a601..279ad0725 100644 --- a/snappymail/v/0.0.0/app/libraries/RainLoop/Config/AbstractConfig.php +++ b/snappymail/v/0.0.0/app/libraries/RainLoop/Config/AbstractConfig.php @@ -36,16 +36,20 @@ abstract class AbstractConfig implements \ArrayAccess, \JsonSerializable public function offsetExists($offset) : bool { } + + #[\ReturnTypeWillChange] public function offsetGet($offset) { $offset = \explode('/', $offset, 2); $this->Get($offset[0], $offset[1]); } + public function offsetSet($offset, $value) : void { $offset = \explode('/', $offset, 2); $this->Set($offset[0], $offset[1], $value); } + public function offsetUnset($offset) : void { }