1
0
mirror of https://github.com/danog/postgres.git synced 2024-12-13 09:57:32 +01:00
postgres/lib/Connection.php
Aaron Piotrowski 202caf8552
Add Link interface; make PooledConnection internal
Cleaned up interfaces. Users can declare Executor or Link depending on their needs.
2017-08-01 23:01:55 -05:00

7 lines
78 B
PHP

<?php
namespace Amp\Postgres;
interface Connection extends Link, Handle {
}