mirror of
https://github.com/danog/postgres.git
synced 2024-11-27 04:24:45 +01:00
15 lines
246 B
PHP
15 lines
246 B
PHP
<?php
|
|
|
|
namespace Amp\Postgres;
|
|
|
|
use AsyncInterop\Promise;
|
|
|
|
interface Statement {
|
|
/**
|
|
* @param mixed ...$params
|
|
*
|
|
* @return \AsyncInterop\Promise<\Amp\Postgres\Result>
|
|
*/
|
|
public function execute(...$params): Promise;
|
|
}
|