Completed
Push — master ( be3539...07ea50 )
by Jakob
03:34
created
src/DataType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
                     if (is_array($value)) {
75 75
                         $class = 'JSKOS\\' . $type[1];
76 76
                         $value = new Set(
77
-                            array_map(function ($m) use ($class) {
77
+                            array_map(function($m) use ($class) {
78 78
                                 if (is_null($m)) {
79 79
                                     return null;
80 80
                                 }
Please login to merge, or discard this patch.
src/Container.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -169,7 +169,7 @@
 block discarded – undo
169 169
 
170 170
     public function jsonLDSerialize(string $context = self::DEFAULT_CONTEXT, bool $types = null)
171 171
     {
172
-        $set = array_map(function ($m) use ($types) {
172
+        $set = array_map(function($m) use ($types) {
173 173
             return is_object($m) ? $m->jsonLDSerialize('', $types) : $m;
174 174
         }, $this->members);
175 175
 
Please login to merge, or discard this patch.