@@ -69,7 +69,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 | |
@@ -66,7 +66,7 @@ |
||
| 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 | |