From cdf1b476b3c822e0614f4c40ef3179813d496097 Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Mon, 24 Apr 2023 17:07:45 +0200 Subject: [PATCH] fix: use root namespace for mysqli class --- src/MySQL.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MySQL.php b/src/MySQL.php index c5848ba..ecd9549 100644 --- a/src/MySQL.php +++ b/src/MySQL.php @@ -2,7 +2,7 @@ namespace libmysqldriver; - class MySQL extends mysqli { + class MySQL extends \mysqli { function __construct(string $host, string $user, string $pass, string $db) { parent::__construct($host, $user, $pass, $db); }