From ecabe53123b022cecfd1092a0043af2b5beab195 Mon Sep 17 00:00:00 2001 From: flashwave Date: Thu, 1 Aug 2024 23:21:50 +0000 Subject: [PATCH] Fixed missing use. --- VERSION | 2 +- src/Data/SQLite/SQLiteConnection.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 15c0d0a..0991064 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.2408.12316 +0.2408.12321 diff --git a/src/Data/SQLite/SQLiteConnection.php b/src/Data/SQLite/SQLiteConnection.php index 6060b8d..3cb0293 100644 --- a/src/Data/SQLite/SQLiteConnection.php +++ b/src/Data/SQLite/SQLiteConnection.php @@ -5,6 +5,7 @@ namespace Index\Data\SQLite; +use RuntimeException; use SQLite3; use Index\Data\{IDbConnection,IDbTransactions,IDbStatement,IDbResult}; use Index\IO\{GenericStream,Stream};