From 37dc6015059e20d8328363aa7803dc527181dc12 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Tue, 19 Jan 2016 15:08:20 +0100 Subject: [PATCH] Command: Remove property "isDebugging" It's not used anywhere and wrong initalized anyway. --- library/Icinga/Cli/Command.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/library/Icinga/Cli/Command.php b/library/Icinga/Cli/Command.php index b169a7c16..e5ed9c527 100644 --- a/library/Icinga/Cli/Command.php +++ b/library/Icinga/Cli/Command.php @@ -26,7 +26,6 @@ abstract class Command * @deprecated Use Logger::debug() directly */ protected $isVerbose; - protected $isDebugging; protected $moduleName; protected $commandName; @@ -48,7 +47,6 @@ abstract class Command $this->screen = Screen::instance($app); $this->trace = $this->params->shift('trace', false); $this->isVerbose = $this->params->shift('verbose', false); - $this->isDebuging = $this->params->shift('debug', false); if ($initialize) { $this->init(); }