Skip to content

Commit

Permalink
Couple more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
trowski committed Nov 11, 2023
1 parent 1991e3f commit 3154922
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Pool.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ interface Pool extends Link
* Gets a single connection from the pool to run a set of queries against a single connection.
* Generally a transaction should be used instead of this method.
*
* @return Connection<TResult, TStatement, TTransaction, TConfig>
* @return Connection<TConfig, TResult, TStatement, TTransaction>
*/
public function extractConnection(): Connection;

Expand Down
2 changes: 1 addition & 1 deletion src/Transaction.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

/**
* @template TResult of Result
* @template TStatement of Statement
* @template TStatement of Statement<TResult>
* @template TTransaction of Transaction
* @extends Executor<TResult, TStatement, TTransaction>
*/
Expand Down

0 comments on commit 3154922

Please sign in to comment.