示例#1
0
文件: Locator.php 项目: no22/gongo
 public static function getInstance()
 {
     if (is_null(self::$serviceLocator)) {
         self::$serviceLocator = new self();
     }
     return self::$serviceLocator;
 }