1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-25 01:52:40 +00:00
Arsse/lib/Db/Result.php

18 lines
336 B
PHP
Raw Normal View History

<?php
declare(strict_types=1);
2017-03-28 04:12:12 +00:00
namespace JKingWeb\Arsse\Db;
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
function getRow();
function getAll(): array;
function getValue();
2017-02-16 20:29:42 +00:00
function changes();
function lastId();
}