Beispiel #1
0
 /**
  * getInstance
  * 
  * Method to get an instance of the registry
  * @return Lynx_Registry self::$_instance
  */
 public static function getInstance()
 {
     if (self::$instance == NULL) {
         self::$instance = new Lynx_Registry();
     }
     return self::$instance;
 }