Example #1
0
File: Maps.php Project: Eteng/lorb
 static function getInstance()
 {
     if (self::$__instance === null) {
         $s = __CLASS__;
         self::$__instance = new $s();
         self::$__instance->init_vars();
     }
     return self::$__instance;
 }