mirror of
https://codeberg.org/vlw/php-mysql.git
synced 2025-09-13 16:23:42 +02:00
fix: root namespace for mysqli class (#1)
* fix: use root namespace for mysqli class * fix(nit): indentation
This commit is contained in:
parent
78316e608d
commit
e4feef4226
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue