Skip to content

Commit b2fe600

Browse files
committed
Couple more fixes
1 parent 4e6160f commit b2fe600

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/Pool.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ interface Pool extends Link
1616
* Gets a single connection from the pool to run a set of queries against a single connection.
1717
* Generally a transaction should be used instead of this method.
1818
*
19-
* @return Connection<TResult, TStatement, TTransaction, TConfig>
19+
* @return Connection<TConfig, TResult, TStatement, TTransaction>
2020
*/
2121
public function extractConnection(): Connection;
2222

src/Transaction.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
/**
66
* @template TResult of Result
7-
* @template TStatement of Statement
7+
* @template TStatement of Statement<TResult>
88
* @template TTransaction of Transaction
99
* @extends Executor<TResult, TStatement, TTransaction>
1010
*/

0 commit comments

Comments
 (0)