| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 21 | public function getBurnDownChartData($rapidViewId, $sprintId, $paramArray = []) |
||
| 22 | { |
||
| 23 | $paramArray['rapidViewId'] = $rapidViewId; |
||
| 24 | $paramArray['sprintId'] = $sprintId; |
||
| 25 | $json = $this->exec($this->uri.'/'.$this->toHttpQueryParameter($paramArray), null); |
||
| 26 | $burnDownChart = json_decode($json); |
||
| 27 | |||
| 28 | return $burnDownChart; |
||
| 29 | } |
||
| 31 |