示例#1
0
文件: Front.php 项目: jasmun/Noco100
 /**
  * Singleton instance
  *
  * @return IfwPsn_Vendor_Zend_Controller_Front
  */
 public static function getInstance()
 {
     if (null === self::$_instance) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }