예제 #1
0
파일: Cml.php 프로젝트: linhecheng/cmlphp
 /**
  * 获得容器
  *
  * @return Container
  */
 public static function getContainer()
 {
     if (is_null(self::$container)) {
         self::$container = new Container();
     }
     return self::$container;
 }