sql/src/ResultSet.php
2018-10-13 09:20:59 -05:00

16 lines
221 B
PHP

<?php
namespace Amp\Sql;
use Amp\Iterator;
interface ResultSet extends Iterator
{
/**
* {@inheritdoc}
*
* @return array Map of row names to values.
*/
public function getCurrent(): array;
}