@@ -61,7 +61,7 @@ |
||
61 | 61 | $this->log->addInfo('Result='.$ret); |
62 | 62 | |
63 | 63 | $json = json_decode($ret); |
64 | - $results = array_map(function ($elem) { |
|
64 | + $results = array_map(function($elem) { |
|
65 | 65 | return $this->json_mapper->map($elem, new ProjectType()); |
66 | 66 | }, $json); |
67 | 67 |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | { |
69 | 69 | $ret = $this->exec("/user/assignable/search?project=$projectIdOrKey", null); |
70 | 70 | $json = json_decode($ret); |
71 | - $results = array_map(function ($elem) { |
|
71 | + $results = array_map(function($elem) { |
|
72 | 72 | return $this->json_mapper->map($elem, new Reporter()); |
73 | 73 | }, $json); |
74 | 74 | |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | { |
87 | 87 | $ret = $this->exec($this->uri."/$projectIdOrKey/statuses", null); |
88 | 88 | $json = json_decode($ret); |
89 | - $results = array_map(function ($elem) { |
|
89 | + $results = array_map(function($elem) { |
|
90 | 90 | return $this->json_mapper->map($elem, new IssueType()); |
91 | 91 | }, $json); |
92 | 92 | |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | $this->log->addInfo('Result='.$ret); |
106 | 106 | |
107 | 107 | $json = json_decode($ret); |
108 | - $results = array_map(function ($elem) { |
|
108 | + $results = array_map(function($elem) { |
|
109 | 109 | return $this->json_mapper->map($elem, new ProjectType()); |
110 | 110 | }, $json); |
111 | 111 |
@@ -92,7 +92,7 @@ |
||
92 | 92 | |
93 | 93 | public function jsonSerialize() |
94 | 94 | { |
95 | - return array_filter(get_object_vars($this), function ($var) { |
|
95 | + return array_filter(get_object_vars($this), function($var) { |
|
96 | 96 | return !is_null($var); |
97 | 97 | }); |
98 | 98 | } |
@@ -25,7 +25,7 @@ |
||
25 | 25 | |
26 | 26 | public static function dd($x) |
27 | 27 | { |
28 | - array_map(function ($x) { |
|
28 | + array_map(function($x) { |
|
29 | 29 | (new Dumper())->dump($x); |
30 | 30 | }, func_get_args()); |
31 | 31 | die(1); |
@@ -140,7 +140,7 @@ |
||
140 | 140 | |
141 | 141 | public function jsonSerialize() |
142 | 142 | { |
143 | - $vars = array_filter(get_object_vars($this), function ($var) { |
|
143 | + $vars = array_filter(get_object_vars($this), function($var) { |
|
144 | 144 | return !is_null($var); |
145 | 145 | }); |
146 | 146 |
@@ -783,7 +783,7 @@ |
||
783 | 783 | $metas = json_decode($ret, true); |
784 | 784 | |
785 | 785 | // extract only custom field(startWith customefield_XXXXX) |
786 | - $cfs = array_filter($metas['fields'], function ($key) { |
|
786 | + $cfs = array_filter($metas['fields'], function($key) { |
|
787 | 787 | $pos = strpos($key, 'customfield'); |
788 | 788 | |
789 | 789 | return $pos !== false; |
@@ -27,7 +27,7 @@ |
||
27 | 27 | */ |
28 | 28 | public function register() |
29 | 29 | { |
30 | - $this->app->bind(ConfigurationInterface::class, function () { |
|
30 | + $this->app->bind(ConfigurationInterface::class, function() { |
|
31 | 31 | return new DotEnvConfiguration(base_path()); |
32 | 32 | }); |
33 | 33 | } |
@@ -26,7 +26,7 @@ |
||
26 | 26 | |
27 | 27 | public function jsonSerialize() |
28 | 28 | { |
29 | - return array_filter(get_object_vars($this), function ($var) { |
|
29 | + return array_filter(get_object_vars($this), function($var) { |
|
30 | 30 | return !is_null($var); |
31 | 31 | }); |
32 | 32 | } |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | } |
26 | 26 | |
27 | 27 | } |
28 | - public function setRestClient(){ |
|
28 | + public function setRestClient() { |
|
29 | 29 | $this->restClient = new JiraClient($this->configuration, $this->logger, $this->path); |
30 | 30 | $this->restClient->setAPIUri(''); |
31 | 31 | |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | static function getBoardFromJSON($json) { |
36 | 36 | $json_mapper = new \JsonMapper(); |
37 | 37 | $json_mapper->undefinedPropertyHandler = [new \JiraRestApi\JsonMapperHelper(), 'setUndefinedProperty']; |
38 | - return $json_mapper->map($json, new Board() ); |
|
38 | + return $json_mapper->map($json, new Board()); |
|
39 | 39 | } |
40 | 40 | static function getArrayOfBoardsFromJSON($boardList) { |
41 | 41 | $json_mapper = new \JsonMapper(); |
@@ -69,18 +69,18 @@ discard block |
||
69 | 69 | public function getAllBoards($paramArray = []) |
70 | 70 | { |
71 | 71 | $boardArray = array(); |
72 | - $boardArray = $this->loopOverResults($this->uri,$paramArray); |
|
72 | + $boardArray = $this->loopOverResults($this->uri, $paramArray); |
|
73 | 73 | return $this->getArrayOfBoardsFromJSON($boardArray); |
74 | 74 | } |
75 | 75 | |
76 | - public function getBoardWithSprintsList($boardId = null,$paramArray = []){ |
|
76 | + public function getBoardWithSprintsList($boardId = null, $paramArray = []) { |
|
77 | 77 | if (is_null($boardId)) { |
78 | 78 | $boardList = $this->getAllBoards(); |
79 | 79 | $boards = array(); |
80 | - foreach($boardList as $board) { |
|
80 | + foreach ($boardList as $board) { |
|
81 | 81 | if ($board->type == 'scrum') { |
82 | 82 | $boards[] = $this->getSprintInfoForBoard($board->id, $paramArray); |
83 | - }else { |
|
83 | + } else { |
|
84 | 84 | $boards[] = $board; |
85 | 85 | } |
86 | 86 | } |
@@ -90,9 +90,9 @@ discard block |
||
90 | 90 | return $boards; |
91 | 91 | } |
92 | 92 | |
93 | - public function getSprintInfoForBoard($boardId,$paramArray) { |
|
93 | + public function getSprintInfoForBoard($boardId, $paramArray) { |
|
94 | 94 | $board = $this->getBoard($boardId); |
95 | - $sprintList = $this->loopOverResults($this->uri.'/'.$boardId.'/sprint/',$paramArray); |
|
95 | + $sprintList = $this->loopOverResults($this->uri.'/'.$boardId.'/sprint/', $paramArray); |
|
96 | 96 | $sprintObjectsArray = array(); |
97 | 97 | foreach ($sprintList as $sprint) { |
98 | 98 | $sprintObjectsArray[$sprint->id] = SprintService::getSprintFromJSON($sprint); |
@@ -102,17 +102,17 @@ discard block |
||
102 | 102 | |
103 | 103 | } |
104 | 104 | |
105 | - public function loopOverResults($uri,$paramArray = []) { |
|
105 | + public function loopOverResults($uri, $paramArray = []) { |
|
106 | 106 | $resultsArray = array(); |
107 | 107 | $ret = $this->restClient->exec($uri.$this->restClient->toHttpQueryParameter($paramArray), null); |
108 | 108 | $results = json_decode($ret); |
109 | 109 | while (!$results->isLast) { |
110 | - $resultsArray = array_merge($resultsArray,$results->values); |
|
110 | + $resultsArray = array_merge($resultsArray, $results->values); |
|
111 | 111 | $paramArray['startAt'] = $results->startAt + $results->maxResults; |
112 | 112 | $ret = $this->restClient->exec($this->uri.$this->restClient->toHttpQueryParameter($paramArray), null); |
113 | 113 | $results = json_decode($ret); |
114 | 114 | } |
115 | - $resultsArray = array_merge($resultsArray,$results->values); |
|
115 | + $resultsArray = array_merge($resultsArray, $results->values); |
|
116 | 116 | return $resultsArray; |
117 | 117 | } |
118 | 118 |