@@ -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 |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | |
28 | 28 | public function getSprintFromJSON($json) |
29 | 29 | { |
30 | - $sprint= $this->json_mapper->map( |
|
30 | + $sprint = $this->json_mapper->map( |
|
31 | 31 | $json, new Sprint() |
32 | 32 | ); |
33 | 33 | |
@@ -46,9 +46,9 @@ discard block |
||
46 | 46 | */ |
47 | 47 | public function getSprint($sprintObject = null) |
48 | 48 | { |
49 | - $sprintObject = ($sprintObject ) ? $sprintObject : new Sprint(); |
|
49 | + $sprintObject = ($sprintObject) ? $sprintObject : new Sprint(); |
|
50 | 50 | |
51 | - $ret = $this->exec($this->uri.'/$sprintId' , null); |
|
51 | + $ret = $this->exec($this->uri.'/$sprintId', null); |
|
52 | 52 | |
53 | 53 | $this->log->addInfo("Result=\n".$ret); |
54 | 54 |