From 6d5b4b8a1a8e598350bb03282a89d13946e93e99 Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Fri, 21 Feb 2014 06:42:57 +0100 Subject: [PATCH] remove quiet option; we do not use it anyway --- src/bdrem/UserInterface.php | 10 ---------- 1 file changed, 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) { -- 2.30.2