diff --git a/recovery/common/src/DumpIterator.php b/recovery/common/src/DumpIterator.php index fd5f798cf97..fd63ea1f54b 100644 --- a/recovery/common/src/DumpIterator.php +++ b/recovery/common/src/DumpIterator.php @@ -86,6 +86,7 @@ public function __destruct() * * @throws OutOfBoundsException */ + #[\ReturnTypeWillChange] public function seek($position) { $this->rewind(); @@ -108,6 +109,7 @@ public function count() return $this->count; } + #[\ReturnTypeWillChange] public function rewind() { rewind($this->stream); @@ -131,6 +133,7 @@ public function key() return $this->position; } + #[\ReturnTypeWillChange] public function next() { ++$this->position;