コード例 #1
0
ファイル: MigrateCommand.php プロジェクト: andizzle/zapper
 public function getOptions()
 {
     $options = parent::getOptions();
     $_options = array(array('no-seed', null, InputOption::VALUE_NONE, 'Indicates if the seed task should be re-run..', null));
     return array_merge($_options, $options);
 }
コード例 #2
0
ファイル: RunCommand.php プロジェクト: andizzle/zapper
 /**
  * Get the console command options.
  *
  * @return array
  */
 protected function getOptions()
 {
     $options = parent::getOptions();
     $_options = array(array('no-drop', null, InputOption::VALUE_NONE, 'Do not drop test DB after test.', null), array('no-seed', null, InputOption::VALUE_NONE, 'Indicates if the seed task should be re-run...', null));
     return array_merge($_options, $options);
 }