From 80a611d5ac6f04951a7a6b77e9db9d1ddc584b74 Mon Sep 17 00:00:00 2001 From: Gregory Letellier Date: Tue, 7 Nov 2023 10:09:54 +0100 Subject: [PATCH] add getPdo method --- src/Connection.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Connection.php b/src/Connection.php index 434b91f..4f2f96e 100644 --- a/src/Connection.php +++ b/src/Connection.php @@ -217,4 +217,9 @@ class Connection { return $this->error; } + + public function getPdo() + { + return $this->pdo; + } }