예제 #1
0
파일: Config.php 프로젝트: lfjaimesb/sic
 public static function Singleton()
 {
     if (self::$Instance == null) {
         $c = __CLASS__;
         self::$Instance = new $c();
     }
     return self::$Instance;
 }