/**
  * Get the console command options.
  *
  * @return array
  */
 protected function getOptions()
 {
     return array_merge(array(array('dest', 'd', InputOption::VALUE_REQUIRED, 'Destination list name.', null), array('force', 'f', InputOption::VALUE_NONE, 'Force the move, no prompting.')), parent::getOptions());
 }
 /**
  * Get the console command options.
  */
 protected function getOptions()
 {
     return array_merge(array(array('descript', 'd', InputOption::VALUE_REQUIRED, 'New description for task.'), array('action', 'a', InputOption::VALUE_REQUIRED, 'Is task a next action (yes|no).')), parent::getOptions());
 }
 /**
  * Get the console command options.
  */
 protected function getOptions()
 {
     return array_merge(parent::getOptions(), array(array('title', 't', InputOption::VALUE_REQUIRED, 'Title of list.', null), array('subtitle', 's', InputOption::VALUE_REQUIRED, 'Subtitle of list.', null)));
 }
 /**
  * Get the console command options.
  */
 protected function getOptions()
 {
     return array_merge(parent::getOptions(), array(array('action', 'a', InputOption::VALUE_NONE, 'Make task a Next Action.')));
 }
 /**
  * Return the options.
  */
 protected function getOptions()
 {
     return array_merge(parent::getOptions(), array(array('force', 'f', InputOption::VALUE_NONE, 'Force the removal, no prompting.')));
 }
 /**
  * Get the console command options.
  */
 protected function getOptions()
 {
     return array_merge(array(array('action', 'a', InputOption::VALUE_NONE, 'Show only next actions.', null), array('skip-done', 'x', InputOption::VALUE_NONE, 'Skip completed actions.', null)), parent::getOptions());
 }