diff --git a/src/Pool.php b/src/Pool.php index 0a65c1e..6083b6a 100644 --- a/src/Pool.php +++ b/src/Pool.php @@ -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 + * @return Connection */ public function extractConnection(): Connection; diff --git a/src/Transaction.php b/src/Transaction.php index e6b722c..68cc27d 100644 --- a/src/Transaction.php +++ b/src/Transaction.php @@ -4,7 +4,7 @@ /** * @template TResult of Result - * @template TStatement of Statement + * @template TStatement of Statement * @template TTransaction of Transaction * @extends Executor */