*/ private static array $_instances = []; /** * Get or make an instance of the class this was called on. * * @return static Instance of the class this was called on. */ final public static function getInstance() { /** @phpstan-ignore-next-line */ return self::$_instances[static::class] ??= new static(); } }