コード例 #1
0
ファイル: Set.php プロジェクト: natedrake/fast-forward
 protected function interact(InputInterface $input, OutputInterface $output)
 {
     if ($input->getOption('list') || $input->getOption('import-stdin') || $input->getOption('import-file') !== null) {
         return;
     }
     parent::interact($input, $output);
 }
コード例 #2
0
ファイル: Set.php プロジェクト: nochso/fast-forward
 protected function interact(InputInterface $input, OutputInterface $output)
 {
     // Do not ask interactively when these options are used
     if ($input->getOption('list') || $input->getOption('default') || $input->getOption('import-stdin') || $input->getOption('import-file') !== null) {
         return;
     }
     parent::interact($input, $output);
 }