@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | { |
73 | 73 | $ret = $this->exec("/user/assignable/search?project=$projectIdOrKey", null); |
74 | 74 | $json = json_decode($ret); |
75 | - $results = array_map(function ($elem) { |
|
75 | + $results = array_map(function($elem) { |
|
76 | 76 | return $this->json_mapper->map($elem, new Reporter()); |
77 | 77 | }, $json); |
78 | 78 | |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | { |
91 | 91 | $ret = $this->exec($this->uri."/$projectIdOrKey/statuses", null); |
92 | 92 | $json = json_decode($ret); |
93 | - $results = array_map(function ($elem) { |
|
93 | + $results = array_map(function($elem) { |
|
94 | 94 | return $this->json_mapper->map($elem, new IssueType()); |
95 | 95 | }, $json); |
96 | 96 | |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | { |
111 | 111 | $ret = $this->exec($this->uri."/$projectIdOrKey/statuses", null); |
112 | 112 | $json = json_decode($ret); |
113 | - $results = array_map(function ($elem) { |
|
113 | + $results = array_map(function($elem) { |
|
114 | 114 | return $this->json_mapper->map($elem, new IssueType()); |
115 | 115 | }, $json); |
116 | 116 | |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | $this->log->info('Result='.$ret); |
143 | 143 | |
144 | 144 | $json = json_decode($ret); |
145 | - $results = array_map(function ($elem) { |
|
145 | + $results = array_map(function($elem) { |
|
146 | 146 | return $this->json_mapper->map($elem, new ProjectType()); |
147 | 147 | }, $json); |
148 | 148 |