public static function getInstance() { if (self::$uniqueInstance === NULL) { self::$uniqueInstance = new Singleton(); } return self::$uniqueInstance; }