1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2025-01-09 09:22:40 +00:00
Arsse/vendor/JKingWeb/NewsSync/Db/Result.php
J. King 6ffe942f99 SQLite3 database driver in working condition
PDO stub for now; other drivers to come
2016-10-05 22:08:43 -04:00

9 lines
No EOL
164 B
PHP

<?php
declare(strict_types=1);
namespace JKingWeb\NewsSync\Db;
interface Result {
function __invoke(); // alias of get()
function get();
function getSingle();
}