File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change 4
4
5
5
use Dotenv \Environment \Adapter \ArrayAdapter ;
6
6
use InvalidArgumentException ;
7
+ use ReturnTypeWillChange ;
7
8
8
9
/**
9
10
* This is the abstract variables implementation.
@@ -159,6 +160,7 @@ public function has($name)
159
160
/**
160
161
* {@inheritdoc}
161
162
*/
163
+ #[ReturnTypeWillChange]
162
164
public function offsetExists ($ offset )
163
165
{
164
166
return $ this ->has ($ offset );
@@ -167,6 +169,7 @@ public function offsetExists($offset)
167
169
/**
168
170
* {@inheritdoc}
169
171
*/
172
+ #[ReturnTypeWillChange]
170
173
public function offsetGet ($ offset )
171
174
{
172
175
return $ this ->get ($ offset );
@@ -175,6 +178,7 @@ public function offsetGet($offset)
175
178
/**
176
179
* {@inheritdoc}
177
180
*/
181
+ #[ReturnTypeWillChange]
178
182
public function offsetSet ($ offset , $ value )
179
183
{
180
184
$ this ->set ($ offset , $ value );
@@ -183,6 +187,7 @@ public function offsetSet($offset, $value)
183
187
/**
184
188
* {@inheritdoc}
185
189
*/
190
+ #[ReturnTypeWillChange]
186
191
public function offsetUnset ($ offset )
187
192
{
188
193
$ this ->clear ($ offset );
You can’t perform that action at this time.
0 commit comments