1
0
mirror of https://github.com/danog/postgres.git synced 2024-11-27 04:24:45 +01:00
postgres/lib/Statement.php
2017-05-24 09:59:06 -05:00

15 lines
261 B
PHP

<?php
namespace Amp\Postgres;
use Amp\Promise;
interface Statement {
/**
* @param mixed ...$params
*
* @return \Amp\Promise<\Amp\Postgres\CommandResult|\Amp\Postgres\TupleResult>
*/
public function execute(...$params): Promise;
}