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