コード例 #1
0
ファイル: BizSystem.php プロジェクト: Why-Not-Sky/cubi-ng
 /**
  * Create instant of BizSystem
  *
  * @return BizSystem instant of BizSystem
  */
 public static function instance()
 {
     if (self::$_instance == null) {
         self::$_instance = new BizSystem();
     }
     return self::$_instance;
 }