We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49e43da commit 0a17b64Copy full SHA for 0a17b64
1 file changed
src/Config.php
@@ -62,7 +62,8 @@ private function merge(array $config)
62
$this->config = array_replace($this->config, $config);
63
}
64
65
- public function offsetExists($offset): bool
+ #[\ReturnTypeWillChange]
66
+ public function offsetExists($offset)
67
{
68
return isset($this->config[$offset]);
69
@@ -73,12 +74,14 @@ public function offsetGet($offset)
73
74
return $this->config[$offset];
75
76
- public function offsetSet($offset, $value): void
77
78
+ public function offsetSet($offset, $value)
79
80
$this->config[$offset] = $value;
81
82
- public function offsetUnset($offset): void
83
84
+ public function offsetUnset($offset)
85
86
unset($this->config[$offset]);
87
0 commit comments