diff --git a/library/Icinga/Application/Cli.php b/library/Icinga/Application/Cli.php index 9478c2592..2ea47e590 100644 --- a/library/Icinga/Application/Cli.php +++ b/library/Icinga/Application/Cli.php @@ -151,7 +151,9 @@ class Cli extends ApplicationBootstrap if ($this->showBenchmark) { Benchmark::dump(); } - if ($result === FALSE) exit(1); + if (false === $result) { + exit(1); + } } protected function dispatchEndless()