1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-22 21:22:40 +00:00
Arsse/lib/Db/Statement.php

11 lines
314 B
PHP
Raw Normal View History

<?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;
function rebind(...$bindings): bool;
function rebindArray(array $bindings): bool;
}