mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-30 09:14:08 +02:00
Command: Remove property "isDebugging"
It's not used anywhere and wrong initalized anyway.
This commit is contained in:
parent
be239b9a22
commit
37dc601505
@ -26,7 +26,6 @@ abstract class Command
|
|||||||
* @deprecated Use Logger::debug() directly
|
* @deprecated Use Logger::debug() directly
|
||||||
*/
|
*/
|
||||||
protected $isVerbose;
|
protected $isVerbose;
|
||||||
protected $isDebugging;
|
|
||||||
|
|
||||||
protected $moduleName;
|
protected $moduleName;
|
||||||
protected $commandName;
|
protected $commandName;
|
||||||
@ -48,7 +47,6 @@ abstract class Command
|
|||||||
$this->screen = Screen::instance($app);
|
$this->screen = Screen::instance($app);
|
||||||
$this->trace = $this->params->shift('trace', false);
|
$this->trace = $this->params->shift('trace', false);
|
||||||
$this->isVerbose = $this->params->shift('verbose', false);
|
$this->isVerbose = $this->params->shift('verbose', false);
|
||||||
$this->isDebuging = $this->params->shift('debug', false);
|
|
||||||
if ($initialize) {
|
if ($initialize) {
|
||||||
$this->init();
|
$this->init();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user