made some refactoring

This commit is contained in:
2025-07-09 05:28:39 +03:00
parent f76eb08fe0
commit 38676bc9fd
69 changed files with 3075 additions and 355 deletions

View File

@@ -53,7 +53,7 @@ class Singleton
dump(trim($message . ': ' . $cls, ' :'));
if (!isset(self::$instances[$cls])) {
self::$instances[$cls] = new static();
self::$instances[$cls] = new static;
}
return self::$instances[$cls];