Skip to content

Commit b67f25e

Browse files
authored
Merge pull request #175 from ruudk/php-81-compat
2 parents 7868eb9 + 8a48661 commit b67f25e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/Mink/MinkParameters.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
namespace FriendsOfBehat\SymfonyExtension\Mink;
66

7+
use ReturnTypeWillChange;
8+
79
/** @final */
810
class MinkParameters implements \Countable, \IteratorAggregate, \ArrayAccess
911
{
@@ -25,6 +27,7 @@ public function offsetExists($offset): bool
2527
return array_key_exists($offset, $this->minkParameters);
2628
}
2729

30+
#[ReturnTypeWillChange]
2831
public function offsetGet($offset)
2932
{
3033
return $this->minkParameters[$offset] ?? null;

0 commit comments

Comments
 (0)