Completed
Pull Request — master (#228)
by
unknown
04:29
created
src/Board/Board.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
 
93 93
     public function jsonSerialize()
94 94
     {
95
-        return array_filter(get_object_vars($this), function ($var) {
95
+        return array_filter(get_object_vars($this), function($var) {
96 96
             return !is_null($var);
97 97
         });
98 98
     }
Please login to merge, or discard this patch.
src/Board/Location.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
      */
80 80
     public function jsonSerialize()
81 81
     {
82
-        return array_filter(get_object_vars($this), function ($var) {
82
+        return array_filter(get_object_vars($this), function($var) {
83 83
             return !is_null($var);
84 84
         });
85 85
     }
Please login to merge, or discard this patch.
src/Board/BoardService.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 getBoardList($paramArray = [])
28 28
     {
29
-        $json = $this->exec($this->uri. $this->toHttpQueryParameter($paramArray), null);
29
+        $json = $this->exec($this->uri.$this->toHttpQueryParameter($paramArray), null);
30 30
         $boards = $this->json_mapper->mapArray(
31 31
             json_decode($json)->values, new \ArrayObject(), Board::class
32 32
         );
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     }
35 35
 
36 36
     public function getBoard($id, $paramArray = []) {
37
-        $json = $this->exec($this->uri . '/' . $id . $this->toHttpQueryParameter($paramArray), null);
37
+        $json = $this->exec($this->uri.'/'.$id.$this->toHttpQueryParameter($paramArray), null);
38 38
         $board = $this->json_mapper->map(
39 39
             json_decode($json), new Board()
40 40
         );
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
     }
43 43
 
44 44
     public function getBoardIssues($id, $paramArray = []) {
45
-        $json = $this->exec($this->uri . '/' . $id . $this->toHttpQueryParameter($paramArray), null);
45
+        $json = $this->exec($this->uri.'/'.$id.$this->toHttpQueryParameter($paramArray), null);
46 46
         $board = $this->json_mapper->mapArray(
47 47
             json_decode($json), new \ArrayObject(), Issue::class
48 48
         );
Please login to merge, or discard this patch.