Beispiel #1
0
 /**
  * Get the instance
  *
  * @return void
  **/
 public static function instance()
 {
     if (!isset(self::$_instance) || !self::$_instance instanceof Configure) {
         self::$_instance = new Configure();
     }
     return self::$_instance;
 }