From 954b5c4c7bb171e7c1de592a8209d7ddab088676 Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Mon, 24 Apr 2023 17:22:30 +0200 Subject: [PATCH] fix: root namespace for sqlite3 classes --- src/SQLite.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/SQLite.php b/src/SQLite.php index 9b007f7..a19db06 100644 --- a/src/SQLite.php +++ b/src/SQLite.php @@ -1,8 +1,8 @@ db_path = $db; @@ -33,7 +33,7 @@ } // Execute a prepared statement and SQLite3Result object - private function run_query(string $query, mixed $values = []): SQLite3Result|bool { + private function run_query(string $query, mixed $values = []): \SQLite3Result|bool { $statement = $this->prepare($query); // Format optional placeholder "?" with values