1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-23 07:04:53 +00:00
Arsse/vendor/JKingWeb/NewsSync/Db/Result.php
2016-10-17 16:49:39 -04:00

14 lines
No EOL
238 B
PHP

<?php
declare(strict_types=1);
namespace JKingWeb\NewsSync\Db;
interface Result extends \Iterator {
function current();
function key();
function next();
function rewind();
function valid();
function get();
function getSingle();
}