/**
  * (non-PHPdoc)
  *
  * @see \Symfony\Component\Console\Command\Command::configure()
  */
 protected function configure()
 {
     parent::configure();
     $this->addOption("limit", "l", InputOption::VALUE_REQUIRED, "The number of activity items you want returned.");
     $this->addOption("offset", "o", InputOption::VALUE_REQUIRED, "Index of the first activity item you want, starting from zero.");
     $this->addOption("occurred_before", "ob", InputOption::VALUE_REQUIRED, "Activity will be returned only for operations that occurred before the time specified by this parameter.");
     $this->addOption("occurred_after", "oa", InputOption::VALUE_REQUIRED, "Activity will be returned only for operations that occurred after the time specified by this parameter.");
     $this->addOption("sort_order", "so", InputOption::VALUE_REQUIRED, "The order to return the activity. Defaults to descending. Valid enumeration values: asc, desc");
 }
 protected function configure()
 {
     parent::configure();
     $this->addOption("project_id", "pid", InputOption::VALUE_REQUIRED, "ITCloud Pivotal Tracker API v5. The ID of the project.");
 }
 /**
  * (non-PHPdoc)
  *
  * @see \Symfony\Component\Console\Command\Command::configure()
  */
 protected function configure()
 {
     parent::configure();
     $this->getDefinition()->addOptions($this->getOptions());
 }
 /**
  * (non-PHPdoc)
  *
  * @see \Symfony\Component\Console\Command\Command::configure()
  */
 protected function configure()
 {
     parent::configure();
     $this->addOption("account_id", "aid", InputOption::VALUE_REQUIRED, "ITCloud Pivotal Tracker API v5 Account ID.");
     $this->addOption("with_permission", "wp", InputOption::VALUE_REQUIRED, "ITCloud Pivotal Tracker API v5 find accounts where you have the specified permission:none, project_creation, time_keeping, time_entering, administration");
 }
 /**
  * (non-PHPdoc)
  *
  * @see \Symfony\Component\Console\Command\Command::configure()
  */
 protected function configure()
 {
     parent::configure();
     $this->addOption("account_id", "aid", InputOption::VALUE_REQUIRED, "ITCloud Pivotal Tracker API v5 Account ID.");
 }