From 0b6c0b40d843a4f8b1f59bbd1f1500686c4761eb Mon Sep 17 00:00:00 2001 From: itismadness Date: Thu, 24 Sep 2020 09:50:18 +0000 Subject: [PATCH] fix lint error --- src/Logchecker.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Logchecker.php b/src/Logchecker.php index 2af3d82..db38c60 100644 --- a/src/Logchecker.php +++ b/src/Logchecker.php @@ -332,8 +332,7 @@ class Logchecker foreach ($Value as $KKey => $VValue) { $this->log .= " {$KKey}: {$VValue}\n"; } - } - else { + } else { if (is_bool($Value)) { $Value = ($Value) ? 'true' : 'false'; }