2016-10-05 22:08:43 -04:00
|
|
|
<?php
|
|
|
|
declare(strict_types=1);
|
2017-03-27 23:12:12 -05:00
|
|
|
namespace JKingWeb\Arsse\Db;
|
2016-10-05 22:08:43 -04:00
|
|
|
|
2016-10-17 16:49:39 -04:00
|
|
|
interface Result extends \Iterator {
|
2017-02-16 14:29:42 -06:00
|
|
|
function current();
|
|
|
|
function key();
|
|
|
|
function next();
|
|
|
|
function rewind();
|
|
|
|
function valid();
|
2016-10-17 16:49:39 -04:00
|
|
|
|
2017-03-09 15:01:18 -05:00
|
|
|
function getRow();
|
2017-03-31 17:42:28 -04:00
|
|
|
function getAll(): array;
|
2017-03-06 16:34:38 -05:00
|
|
|
function getValue();
|
2017-04-06 21:41:21 -04:00
|
|
|
|
2017-02-16 14:29:42 -06:00
|
|
|
function changes();
|
2017-03-09 14:48:42 -05:00
|
|
|
function lastId();
|
2016-10-05 22:08:43 -04:00
|
|
|
}
|