Skip to content

Commit b15b6ef

Browse files
committed
#227: Boards integration coding standards II
1 parent 5a04438 commit b15b6ef

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/Board/BoardService.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ public function getBoardList($paramArray = [])
3030
$boards = $this->json_mapper->mapArray(
3131
json_decode($json)->values, new \ArrayObject(), Board::class
3232
);
33+
3334
return $boards;
3435
}
3536

@@ -39,15 +40,17 @@ public function getBoard($id, $paramArray = [])
3940
$board = $this->json_mapper->map(
4041
json_decode($json), new Board()
4142
);
43+
4244
return $board;
4345
}
4446

4547
public function getBoardIssues($id, $paramArray = [])
4648
{
47-
$json = $this->exec($this->uri.'/'.$id . $this->toHttpQueryParameter($paramArray), null);
49+
$json = $this->exec($this->uri.'/'.$id.$this->toHttpQueryParameter($paramArray), null);
4850
$board = $this->json_mapper->mapArray(
4951
json_decode($json), new \ArrayObject(), Issue::class
5052
);
53+
5154
return $board;
5255
}
5356

src/Board/Location.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,4 +91,4 @@ public function jsonSerialize()
9191
});
9292
}
9393

94-
}
94+
}

0 commit comments

Comments
 (0)