diff --git a/src/JiraClient.php b/src/JiraClient.php index 15d4eccc..2b7af31d 100644 --- a/src/JiraClient.php +++ b/src/JiraClient.php @@ -171,10 +171,10 @@ public function exec($context, $post_data = null, $custom_request = null, $cooki { $url = $this->createUrlByContext($context); - if (is_string($post_data)){ + if (is_string($post_data)) { $this->log->addInfo("Curl $custom_request: $url JsonData=".$post_data); } elseif (is_array($post_data)) { - $this->log->addInfo("Curl $custom_request: $url JsonData=" . json_encode($post_data, JSON_UNESCAPED_UNICODE)); + $this->log->addInfo("Curl $custom_request: $url JsonData=".json_encode($post_data, JSON_UNESCAPED_UNICODE)); } $ch = curl_init();