From 592df35acfd73b4d1fc50cd3445a28771afd9db4 Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Fri, 4 Sep 2020 10:17:15 +0300 Subject: [PATCH] cs fix --- application/Espo/Core/Api/ErrorOutput.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/application/Espo/Core/Api/ErrorOutput.php b/application/Espo/Core/Api/ErrorOutput.php index ef1076c2f8..61ae06534b 100644 --- a/application/Espo/Core/Api/ErrorOutput.php +++ b/application/Espo/Core/Api/ErrorOutput.php @@ -121,7 +121,9 @@ class ErrorOutput $logMessageItemList = []; - if ($message) $logMessageItemList[] = "{$message}"; + if ($message) { + $logMessageItemList[] = "{$message}"; + } $logMessageItemList[] = $this->request->getMethod() . ' ' . $this->request->getResourcePath();