mirror of
https://github.com/danog/postgres.git
synced 2024-11-30 04:29:12 +01:00
Remove unused exception classes
This commit is contained in:
parent
2dd4c45b2a
commit
deaab66cbb
@ -1,7 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace Amp\Postgres;
|
||||
|
||||
final class PoolError extends \Error
|
||||
{
|
||||
}
|
@ -5,6 +5,7 @@ namespace Amp\Postgres;
|
||||
use Amp\Promise;
|
||||
use Amp\Sql\Operation;
|
||||
use Amp\Sql\Transaction as SqlTransaction;
|
||||
use Amp\Sql\TransactionError;
|
||||
|
||||
final class Transaction implements Handle, SqlTransaction
|
||||
{
|
||||
|
@ -1,7 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace Amp\Postgres;
|
||||
|
||||
class TransactionError extends \Error
|
||||
{
|
||||
}
|
@ -10,12 +10,12 @@ use Amp\Postgres\Listener;
|
||||
use Amp\Postgres\QueryExecutionError;
|
||||
use Amp\Postgres\ResultSet;
|
||||
use Amp\Postgres\Transaction;
|
||||
use Amp\Postgres\TransactionError;
|
||||
use Amp\Sql\CommandResult;
|
||||
use Amp\Sql\QueryError;
|
||||
use Amp\Sql\ResultSet as SqlResultSet;
|
||||
use Amp\Sql\Statement;
|
||||
use Amp\Sql\Transaction as SqlTransaction;
|
||||
use Amp\Sql\TransactionError;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
abstract class AbstractLinkTest extends TestCase
|
||||
|
Loading…
Reference in New Issue
Block a user