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

15 lines
283 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 getSingle();
function changes();
}