1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-22 21:22:40 +00:00
Arsse/vendor/JKingWeb/NewsSync/Db/Statement.php
2016-11-19 09:44:13 -05:00

9 lines
No EOL
218 B
PHP

<?php
declare(strict_types=1);
namespace JKingWeb\NewsSync\Db;
interface Statement {
function __invoke(&...$values); // alias of run()
function run(&...$values): Result;
function runArray(array &$values): Result;
}