/** * 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); }