Избавление от phpdotenv, переработка сборщика

This commit is contained in:
RedHood
2020-09-17 22:27:12 +10:00
parent 7c0fcc392d
commit 48946d9070
14 changed files with 253 additions and 253 deletions

View File

@@ -30,7 +30,9 @@ trait Singleton
*/
public static function init(): self
{
if (self::$instance === null) self::$instance = new self;
if (self::$instance === null) {
self::$instance = new self;
}
return self::$instance;
}