1
0
mirror of https://github.com/danog/postgres.git synced 2024-11-30 04:29:12 +01:00
postgres/lib/Statement.php
2017-03-17 10:17:24 -05:00

15 lines
228 B
PHP

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