예제 #1
0
파일: Factory.php 프로젝트: no22/PicowaCore
 public static function getInstance($sContainer = null)
 {
     if (is_null(self::$factory)) {
         self::$factory = new self($sContainer);
     }
     return self::$factory;
 }