aboutsummaryrefslogtreecommitdiff
path: root/src/bdrem
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2014-02-21 06:42:57 +0100
committerChristian Weiske <cweiske@cweiske.de>2014-02-21 06:44:09 +0100
commit6d5b4b8a1a8e598350bb03282a89d13946e93e99 (patch)
tree73a1b1151dee97ba7626869cb8fd6a4baefb1131 /src/bdrem
parent2e18a05a2cedf343b0d0f5fd3e4e6a8d65e2647e (diff)
downloadbdrem-6d5b4b8a1a8e598350bb03282a89d13946e93e99.tar.gz
bdrem-6d5b4b8a1a8e598350bb03282a89d13946e93e99.zip
remove quiet option; we do not use it anyway
Diffstat (limited to 'src/bdrem')
-rw-r--r--src/bdrem/UserInterface.php10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/bdrem/UserInterface.php b/src/bdrem/UserInterface.php
index 8fa001f..1b8cb56 100644
--- a/src/bdrem/UserInterface.php
+++ b/src/bdrem/UserInterface.php
@@ -97,15 +97,6 @@ abstract class UserInterface
'action' => 'StoreString'
)
);
- $parser->addOption(
- 'quiet',
- array(
- 'short_name' => '-q',
- 'long_name' => '--quiet',
- 'description' => "Don't print status messages to stdout",
- 'action' => 'StoreTrue'
- )
- );
return $parser;
}
@@ -117,7 +108,6 @@ abstract class UserInterface
$this->config->daysNext = $result->options['daysNext'];
$this->config->daysPrev = $result->options['daysPrev'];
$this->config->renderer = $result->options['renderer'];
- $this->config->quiet = $result->options['quiet'];
$this->config->stopOnEmpty = $result->options['stopOnEmpty'];
$this->config->setDate($result->options['date']);
} catch (\Exception $exc) {