This commit is contained in:
Shish 2023-01-11 00:51:57 +00:00
parent 8434785da3
commit f0c8affc07
3 changed files with 5 additions and 2 deletions

View file

@ -4,7 +4,8 @@ declare(strict_types=1);
namespace Shimmie2;
use FFSPHP\PDO, FFSPHP\PDOStatement;
use FFSPHP\PDO;
use FFSPHP\PDOStatement;
enum DatabaseDriverID: string
{

View file

@ -62,7 +62,8 @@ function _set_event_listeners(): void
}
}
function _namespaced_class_name(string $class): string {
function _namespaced_class_name(string $class): string
{
return str_replace("Shimmie2\\", "", $class);
}

View file

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace Shimmie2;