1
0
mirror of https://github.com/danog/postgres.git synced 2024-12-04 02:17:44 +01:00
postgres/src/Handle.php
Aaron Piotrowski 989fdb7def
Remove listen() from Transaction
Created new interface Receiver for the listen() method that Transaction does not implement. Fixed Transaction implementation.
2018-07-11 17:47:30 -05:00

9 lines
120 B
PHP

<?php
namespace Amp\Postgres;
interface Handle extends Receiver, Quoter
{
const STATEMENT_NAME_PREFIX = "amp_";
}