Esempio n. 1
0
 /**
  * Returns the single instance
  *
  * @access static
  * @return PMF_Configuration
  */
 public static function getInstance()
 {
     if (null == self::$instance) {
         $className = __CLASS__;
         self::$instance = new $className();
     }
     return self::$instance;
 }