コード例 #1
0
ファイル: CommandWrapper.php プロジェクト: lightster/hodor
 /**
  * @param Application $app
  * @throws ExceptionInterface
  */
 public function showStatus(Application $app)
 {
     putenv('HODOR_CONFIG=' . $this->container->getConfigPath());
     $status_command = new StatusCommand();
     $status_command->setApplication($app);
     $status_command->run(new ArrayInput([]), $this->output);
 }