mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-28 11:39:21 +03:00
Resolve #1014
This commit is contained in:
parent
85b06123c6
commit
a0a7e93707
1 changed files with 4 additions and 0 deletions
|
|
@ -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
|
||||
{
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue