Completed
Push — dev ( 27a5c9...5bc35b )
by Jakob
01:45
created
src/Constructor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
     /**
13 13
      * Set a field value.
14 14
      */
15
-    abstract protected function setField(string $field, $value, bool $strict=true);
15
+    abstract protected function setField(string $field, $value, bool $strict = true);
16 16
 
17 17
     /**
18 18
      * Create a new JSKOS object with given field values.
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
@@ -175,7 +175,7 @@
 block discarded – undo
175 175
      */
176 176
     public function jsonLDSerialize(string $context = self::DEFAULT_CONTEXT)
177 177
     {
178
-        $set = array_map(function ($m) {
178
+        $set = array_map(function($m) {
179 179
             return is_object($m) ? $m->jsonLDSerialize('') : $m;
180 180
         }, $this->members);
181 181
 
Please login to merge, or discard this patch.