1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-04 21:28:02 +02:00
This commit is contained in:
David Grudl
2023-08-05 19:56:38 +02:00
parent 01c7ab63e3
commit cf14987b42

View File

@@ -44,22 +44,22 @@ class ResultIterator implements \Iterator, \Countable
} }
#[\ReturnTypeWillChange]
/** /**
* Returns the key of the current element. * Returns the key of the current element.
* @return mixed * @return mixed
*/ */
#[\ReturnTypeWillChange]
public function key() public function key()
{ {
return $this->pointer; return $this->pointer;
} }
#[\ReturnTypeWillChange]
/** /**
* Returns the current element. * Returns the current element.
* @return mixed * @return mixed
*/ */
#[\ReturnTypeWillChange]
public function current() public function current()
{ {
return $this->row; return $this->row;