Skip to content

Commit 362a8cb

Browse files
committed
Use "array" syntax instead of "[]" shorthand.
1 parent e06d200 commit 362a8cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jsonld.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4203,7 +4203,7 @@ protected function _removePreserve($ctx, $input, $options) {
42034203
}
42044204
} else {
42054205
// prevent circular visitation
4206-
$options['link'][$id] = [$input];
4206+
$options['link'][$id] = array($input);
42074207
}
42084208
}
42094209

0 commit comments

Comments
 (0)