Completed
Pull Request — master (#157)
by
unknown
02:16
created
src/sprint/Sprint.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,11 +52,11 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/sprint/SprintService.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 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
 block discarded – undo
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
 
Please login to merge, or discard this patch.