We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7868eb9 + 8a48661 commit b67f25eCopy full SHA for b67f25e
src/Mink/MinkParameters.php
@@ -4,6 +4,8 @@
4
5
namespace FriendsOfBehat\SymfonyExtension\Mink;
6
7
+use ReturnTypeWillChange;
8
+
9
/** @final */
10
class MinkParameters implements \Countable, \IteratorAggregate, \ArrayAccess
11
{
@@ -25,6 +27,7 @@ public function offsetExists($offset): bool
25
27
return array_key_exists($offset, $this->minkParameters);
26
28
}
29
30
+ #[ReturnTypeWillChange]
31
public function offsetGet($offset)
32
33
return $this->minkParameters[$offset] ?? null;
0 commit comments