mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 09:02:41 +00:00
9 lines
221 B
PHP
9 lines
221 B
PHP
|
<?php
|
||
|
declare(strict_types=1);
|
||
|
namespace JKingWeb\NewsSync\Db;
|
||
|
|
||
|
interface Statement {
|
||
|
function __invoke(...$bindings); // alias of run()
|
||
|
function run(...$bindings): Result;
|
||
|
function runArray(array $bindings): Result;
|
||
|
}
|