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