From 327cf373263bc15e7ea36679a94f6ce9e93fea1a Mon Sep 17 00:00:00 2001 From: "Alexander A. Klimov" Date: Tue, 3 Nov 2015 16:11:20 +0100 Subject: [PATCH] Command: make $config and $configs protected --- library/Icinga/Cli/Command.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/Icinga/Cli/Command.php b/library/Icinga/Cli/Command.php index 07a939b94..d0c950a4e 100644 --- a/library/Icinga/Cli/Command.php +++ b/library/Icinga/Cli/Command.php @@ -28,9 +28,9 @@ abstract class Command protected $commandName; protected $actionName; - private $config; + protected $config; - private $configs; + protected $configs; protected $defaultActionName = 'default';