Move result set type to getCurrent()

This commit is contained in:
Niklas Keller 2018-09-14 22:05:25 +02:00
parent cf131fa9f0
commit 6b4e05f045
1 changed files with 1 additions and 1 deletions

View File

@ -16,5 +16,5 @@ interface ResultSet extends Iterator
*
* @param int $type Next row fetch type. Use the FETCH_* constants provided by this interface.
*/
public function advance(int $type = self::FETCH_ASSOC): Promise;
public function getCurrent(int $type = self::FETCH_ASSOC);
}