From a45179ff66d960bbbc184c94134dc1c8a3ebbe8d Mon Sep 17 00:00:00 2001 From: KwangSeob Jeong Date: Tue, 18 Dec 2018 14:49:44 +0000 Subject: [PATCH] Apply fixes from StyleCI [ci skip] [skip ci] --- src/JiraClient.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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();