예제 #1
0
파일: Config.php 프로젝트: gilad1987/picabo
 /**
  * @return App_Config
  */
 public static function getInstance()
 {
     if (self::$_instance === null) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }