Skip to content

Commit

Permalink
Pool should extend Connection
Browse files Browse the repository at this point in the history
  • Loading branch information
trowski committed Nov 23, 2023
1 parent c2f0e27 commit 66e95be
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Pool.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
/**
* @template TConfig of SqlConfig
* @template TResult of Result
* @template TStatement of Statement
* @template TStatement of Statement<TResult>
* @template TTransaction of Transaction
*
* @extends Link<TResult, TStatement, TTransaction>
* @extends Connection<TConfig, TResult, TStatement, TTransaction>
*/
interface Pool extends Link
interface Pool extends Connection
{
/**
* Gets a single connection from the pool to run a set of queries against a single connection.
Expand Down

0 comments on commit 66e95be

Please sign in to comment.