From 418324c0bdf5b0cd05372f4159053d0ad4a94308 Mon Sep 17 00:00:00 2001 From: Aaron Piotrowski Date: Wed, 22 Nov 2023 23:16:35 -0600 Subject: [PATCH] Pool should extend Connection --- src/Pool.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Pool.php b/src/Pool.php index 6083b6a..ea2f10e 100644 --- a/src/Pool.php +++ b/src/Pool.php @@ -8,9 +8,9 @@ * @template TStatement of Statement * @template TTransaction of Transaction * - * @extends Link + * @extends Connection */ -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.