mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2025-01-09 09:22:40 +00:00
6ffe942f99
PDO stub for now; other drivers to come
9 lines
No EOL
164 B
PHP
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();
|
|
} |