@@ -26,7 +26,7 @@ discard block |
||
| 26 | 26 | */ |
| 27 | 27 | public function getBoardList($paramArray = []) |
| 28 | 28 | { |
| 29 | - $json = $this->exec($this->uri. $this->toHttpQueryParameter($paramArray), null); |
|
| 29 | + $json = $this->exec($this->uri.$this->toHttpQueryParameter($paramArray), null); |
|
| 30 | 30 | $boards = $this->json_mapper->mapArray( |
| 31 | 31 | json_decode($json)->values, new \ArrayObject(), Board::class |
| 32 | 32 | ); |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | } |
| 35 | 35 | |
| 36 | 36 | public function getBoard($id, $paramArray = []) { |
| 37 | - $json = $this->exec($this->uri . '/' . $id . $this->toHttpQueryParameter($paramArray), null); |
|
| 37 | + $json = $this->exec($this->uri.'/'.$id.$this->toHttpQueryParameter($paramArray), null); |
|
| 38 | 38 | $board = $this->json_mapper->map( |
| 39 | 39 | json_decode($json), new Board() |
| 40 | 40 | ); |
@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | public function getBoardIssues($id, $paramArray = []) { |
| 45 | - $json = $this->exec($this->uri . '/' . $id . $this->toHttpQueryParameter($paramArray), null); |
|
| 45 | + $json = $this->exec($this->uri.'/'.$id.$this->toHttpQueryParameter($paramArray), null); |
|
| 46 | 46 | $board = $this->json_mapper->mapArray( |
| 47 | 47 | json_decode($json), new \ArrayObject(), Issue::class |
| 48 | 48 | ); |