1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-04 13:17:58 +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.
* @return mixed
*/
#[\ReturnTypeWillChange]
public function key()
{
return $this->pointer;
}
#[\ReturnTypeWillChange]
/**
* Returns the current element.
* @return mixed
*/
#[\ReturnTypeWillChange]
public function current()
{
return $this->row;