mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 07:24:53 +00:00
10 lines
No EOL
270 B
PHP
10 lines
No EOL
270 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
namespace JKingWeb\NewsSync\Db;
|
|
|
|
interface Statement {
|
|
function __construct($st, array $bindings = null);
|
|
function __invoke(&...$values); // alias of run()
|
|
function run(&...$values): Result;
|
|
function runArray(array &$values): Result;
|
|
} |