assertRunningOnCli(); return $this->loadConfig() ->configureErrorHandling() ->setTimezone(); } /** * Fail if Icinga has not been called on CLI * * @throws Exception * @return void */ private static function assertRunningOnCli() { if (Platform::isCli()) { return; } throw new Exception('Icinga is not running on CLI'); } }