@@ -74,7 +74,7 @@ |
||
| 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 | } |
@@ -169,7 +169,7 @@ |
||
| 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 | |