mirror of
https://github.com/danog/postgres.git
synced 2024-12-04 02:17:44 +01:00
989fdb7def
Created new interface Receiver for the listen() method that Transaction does not implement. Fixed Transaction implementation.
9 lines
120 B
PHP
9 lines
120 B
PHP
<?php
|
|
|
|
namespace Amp\Postgres;
|
|
|
|
interface Handle extends Receiver, Quoter
|
|
{
|
|
const STATEMENT_NAME_PREFIX = "amp_";
|
|
}
|