Passed
Pull Request — master (#228)
by
unknown
01:58
created
src/Board/Board.php 2 patches
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.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
      */
42 42
     public function getSelf()
43 43
     {
44
-          return $this->self;
44
+            return $this->self;
45 45
     }
46 46
 
47 47
     /**
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.