sql/src/ResultSet.php

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;
}