Skip to content

Commit

Permalink
cs
Browse files Browse the repository at this point in the history
  • Loading branch information
dg committed Aug 5, 2023
1 parent 01c7ab6 commit cf14987
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Dibi/ResultIterator.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,22 +44,22 @@ public function rewind(): void
}


#[\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;
Expand Down

0 comments on commit cf14987

Please sign in to comment.