Skip to content

Commit ba24646

Browse files
committed
Pool should extend Connection
1 parent 40b1671 commit ba24646

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/Pool.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
/**
66
* @template TConfig of SqlConfig
77
* @template TResult of Result
8-
* @template TStatement of Statement
8+
* @template TStatement of Statement<TResult>
99
* @template TTransaction of Transaction
1010
*
11-
* @extends Link<TResult, TStatement, TTransaction>
11+
* @extends Connection<TConfig, TResult, TStatement, TTransaction>
1212
*/
13-
interface Pool extends Link
13+
interface Pool extends Connection
1414
{
1515
/**
1616
* Gets a single connection from the pool to run a set of queries against a single connection.

0 commit comments

Comments
 (0)