Пример #1
0
 /**
  * Singleton instantiation of this object
  * @return PandraCore self instance
  */
 public static function getInstance()
 {
     if (NULL === self::$_instance) {
         $c = __CLASS__;
         self::$_instance = new $c();
     }
     return self::$_instance;
 }