CS: Standardize new with braces

This commit is contained in:
Dylan K. Taylor
2022-08-15 17:16:04 +01:00
parent 8fa81242d6
commit dce8bd6d21
11 changed files with 18 additions and 14 deletions

View File

@ -31,7 +31,7 @@ class HandlerListManager{
private static ?self $globalInstance = null;
public static function global() : self{
return self::$globalInstance ?? (self::$globalInstance = new self);
return self::$globalInstance ?? (self::$globalInstance = new self());
}
/** @var HandlerList[] classname => HandlerList */