@@ -52,11 +52,11 @@ |
||
52 | 52 | return array_filter(get_object_vars($this)); |
53 | 53 | } |
54 | 54 | |
55 | - public function setName ($sprintName) { |
|
55 | + public function setName($sprintName) { |
|
56 | 56 | $this->name = $sprintName; |
57 | 57 | return $sprintName; |
58 | 58 | } |
59 | - public function getName () { |
|
59 | + public function getName() { |
|
60 | 60 | return $this->name; |
61 | 61 | } |
62 | 62 |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | |
27 | 27 | public function getSprintFromJSON($json) |
28 | 28 | { |
29 | - $sprint= $this->json_mapper->map( |
|
29 | + $sprint = $this->json_mapper->map( |
|
30 | 30 | $json, new Sprint() |
31 | 31 | ); |
32 | 32 | |
@@ -47,9 +47,9 @@ discard block |
||
47 | 47 | */ |
48 | 48 | public function getSprint($sprintId, $sprintObject = null) |
49 | 49 | { |
50 | - $sprintObject = ($sprintObject ) ? $sprintObject : new Sprint(); |
|
50 | + $sprintObject = ($sprintObject) ? $sprintObject : new Sprint(); |
|
51 | 51 | |
52 | - $ret = $this->exec($this->uri.'/$sprintId' , null); |
|
52 | + $ret = $this->exec($this->uri.'/$sprintId', null); |
|
53 | 53 | |
54 | 54 | $this->log->addInfo("Result=\n".$ret); |
55 | 55 |