コード例 #1
0
ファイル: Engine.php プロジェクト: laiello/phpdays
 public static function run($appPath, $mode = null)
 {
     if (!isset(self::$_instance)) {
         self::$_instance = new self($appPath, $mode);
     }
     return self::$_instance;
 }