1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-23 09:02:41 +00:00
Arsse/vendor/JKingWeb/NewsSync/Db/Result.php

15 lines
259 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 {
function current();
function key();
function next();
function rewind();
function valid();
function get();
function getSingle();
2016-11-19 14:44:13 +00:00
function changes();
}