コード例 #1
0
ファイル: UIFactory.php プロジェクト: JeCat/framework
 /**
  * @return InterpreterManager
  */
 public function newInterpreterManager()
 {
     return InterpreterManager::singleton(true);
 }
コード例 #2
0
ファイル: FactoryBase.php プロジェクト: JeCat/framework
 /**
  * @return InterpreterManager
  */
 public function newInterpreterManager()
 {
     $aInterpreters = InterpreterManager::singleton(true);
     $aInterpreters->setApplication($this->application(true));
     return $aInterpreters;
 }