From d13f52c1b2dc25a65121c2e83edabe23b2c323c1 Mon Sep 17 00:00:00 2001 From: Sukhwinder Dhillon Date: Tue, 15 Aug 2023 17:19:03 +0200 Subject: [PATCH] Documentation: Fix `Variable '$obj' is probably undefined` --- library/Icinga/Cli/Documentation.php | 1 + 1 file changed, 1 insertion(+) diff --git a/library/Icinga/Cli/Documentation.php b/library/Icinga/Cli/Documentation.php index 111745efa..11b0e8abf 100644 --- a/library/Icinga/Cli/Documentation.php +++ b/library/Icinga/Cli/Documentation.php @@ -73,6 +73,7 @@ class Documentation return "The '$module' module does not provide any CLI commands\n"; } $d = ''; + $obj = null; if ($command) { $obj = $this->loader->getModuleCommandInstance($module, $command); }