Completed
Pull Request — master (#157)
by
unknown
02:23
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
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.