We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2e267e7 + 0a17b64 commit 40edd32Copy full SHA for 40edd32
1 file changed
src/Config.php
@@ -62,21 +62,25 @@ private function merge(array $config)
62
$this->config = array_replace($this->config, $config);
63
}
64
65
+ #[\ReturnTypeWillChange]
66
public function offsetExists($offset)
67
{
68
return isset($this->config[$offset]);
69
70
71
72
public function offsetGet($offset)
73
74
return $this->config[$offset];
75
76
77
78
public function offsetSet($offset, $value)
79
80
$this->config[$offset] = $value;
81
82
83
84
public function offsetUnset($offset)
85
86
unset($this->config[$offset]);
0 commit comments