1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2025-01-23 03:20:33 +00:00
Arsse/lib/Db/Result.php

18 lines
336 B
PHP
Raw Normal View History

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