fmt
This commit is contained in:
parent
8434785da3
commit
f0c8affc07
3 changed files with 5 additions and 2 deletions
|
@ -4,7 +4,8 @@ declare(strict_types=1);
|
|||
|
||||
namespace Shimmie2;
|
||||
|
||||
use FFSPHP\PDO, FFSPHP\PDOStatement;
|
||||
use FFSPHP\PDO;
|
||||
use FFSPHP\PDOStatement;
|
||||
|
||||
enum DatabaseDriverID: string
|
||||
{
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Shimmie2;
|
||||
|
|
Reference in a new issue