示例#1
0
 /**
  * Returns the instance of the dispatcher
  * 
  * @return frontDispatcher the instance
  */
 public static function getInstance()
 {
     if (!self::$_instance instanceof self) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }