fix: root namespace for mysqli class (#1)

* fix: use root namespace for mysqli class

* fix(nit): indentation
This commit is contained in:
Victor Westerlund 2023-04-24 17:09:46 +02:00 committed by GitHub
parent 78316e608d
commit e4feef4226
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,8 +1,8 @@
<?php
namespace libmysqldriver;
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);
}