From a4744833bc5f88d595d60fab67c1104b447ba088 Mon Sep 17 00:00:00 2001 From: Sukhwinder Dhillon Date: Tue, 15 Aug 2023 17:16:55 +0200 Subject: [PATCH] Command: Add PhpDoc --- library/Icinga/Cli/Command.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/library/Icinga/Cli/Command.php b/library/Icinga/Cli/Command.php index c1d7705b8..7fd5f875d 100644 --- a/library/Icinga/Cli/Command.php +++ b/library/Icinga/Cli/Command.php @@ -141,6 +141,11 @@ abstract class Command return $this->trace; } + /** + * @param $msg + * + * @throws IcingaException + */ public function fail($msg) { throw new IcingaException('%s', $msg);