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