Completed
Push — master ( 1648c7...45987f )
by KwangSeob
16s queued 11s
created
src/Project/ProjectService.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
     {
70 70
         $ret = $this->exec("/user/assignable/search?project=$projectIdOrKey", null);
71 71
         $json = json_decode($ret);
72
-        $results = array_map(function ($elem) {
72
+        $results = array_map(function($elem) {
73 73
             return $this->json_mapper->map($elem, new Reporter());
74 74
         }, $json);
75 75
 
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
     {
88 88
         $ret = $this->exec($this->uri."/$projectIdOrKey/statuses", null);
89 89
         $json = json_decode($ret);
90
-        $results = array_map(function ($elem) {
90
+        $results = array_map(function($elem) {
91 91
             return $this->json_mapper->map($elem, new IssueType());
92 92
         }, $json);
93 93
 
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
         $this->log->info('Result='.$ret);
107 107
 
108 108
         $json = json_decode($ret);
109
-        $results = array_map(function ($elem) {
109
+        $results = array_map(function($elem) {
110 110
             return $this->json_mapper->map($elem, new ProjectType());
111 111
         }, $json);
112 112
 
Please login to merge, or discard this patch.
src/Version/VersionService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
         $this->log->info('Result='.$ret);
67 67
 
68 68
         $json = json_decode($ret);
69
-        $results = array_map(function ($elem) {
69
+        $results = array_map(function($elem) {
70 70
             return $this->json_mapper->map($elem, new ProjectType());
71 71
         }, $json);
72 72
 
Please login to merge, or discard this patch.