Example #1
0
 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);
 }
Example #2
0
 /**
  * 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);
 }