1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-23 17:12:41 +00:00
Arsse/lib/Db/Result.php

16 lines
305 B
PHP
Raw Normal View History

<?php
declare(strict_types=1);
namespace JKingWeb\NewsSync\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
2017-02-16 20:29:42 +00:00
function get();
function getAll();
function getValue();
2017-02-16 20:29:42 +00:00
function changes();
}