예제 #1
0
 /**
  * Singleton Loader
  */
 public static function getLoader()
 {
     if (self::$loader == NULL) {
         self::$loader = new self();
     }
     return self::$loader;
 }
예제 #2
0
파일: Env.php 프로젝트: zrcing/phpenv
 /**
  * Singleton Loader
  */
 public static function getLoader()
 {
     if (!self::$loader instanceof self) {
         self::$loader = new self();
     }
     return self::$loader;
 }