Passed
Pull Request — master (#346)
by
unknown
02:08
created
src/Request/RequestService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,9 +49,9 @@
 block discarded – undo
49 49
 
50 50
         $data = json_encode($requestComment);
51 51
 
52
-        $ret = $this->exec($this->uri . "/$issueIdOrKey/comment", $data);
52
+        $ret = $this->exec($this->uri."/$issueIdOrKey/comment", $data);
53 53
 
54
-        $this->log->debug('add comment result=' . var_export($ret, true));
54
+        $this->log->debug('add comment result='.var_export($ret, true));
55 55
         $requestComment = $this->json_mapper->map(
56 56
             json_decode($ret),
57 57
             new RequestComment()
Please login to merge, or discard this patch.
src/ServiceDeskTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
     private function setupAPIUri($version = '')
8 8
     {
9 9
         $uri = '/rest/servicedeskapi';
10
-        $uri .= ($version != '') ? '/' . $version : '';
10
+        $uri .= ($version != '') ? '/'.$version : '';
11 11
         $this->setAPIUri($uri);
12 12
     }
13 13
 }
Please login to merge, or discard this patch.