Пример #1
0
	/**
	 * @return ConfigHandler
	 */
	public static function Singleton() {
		if (self::$Instance === null) {
			self::$Instance = new self();
		}
		return self::$Instance;
	}