Completed
Pull Request — master (#228)
by
unknown
04:29
created
src/Board/BoardService.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
         );
Please login to merge, or discard this patch.