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