コード例 #1
0
ファイル: ConsoleRunner.php プロジェクト: devour-php/devour
 /**
  * Runs the console application.
  */
 public static function runApplication(InputInterface $input = NULL, OutputInterface $output = NULL, $auto_exit = TRUE)
 {
     self::$runningApp = new static();
     self::$runningApp->setAutoExit($auto_exit);
     self::$runningApp->run($input, $output);
 }