From 362a8cb387ae1fa7d6e18d4af6d1b2ecb3fb602d Mon Sep 17 00:00:00 2001 From: Dave Longley Date: Fri, 5 Dec 2014 16:37:31 -0500 Subject: [PATCH] Use "array" syntax instead of "[]" shorthand. --- jsonld.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jsonld.php b/jsonld.php index 7e2a04e..c5edf9c 100644 --- a/jsonld.php +++ b/jsonld.php @@ -4203,7 +4203,7 @@ class JsonLdProcessor { } } else { // prevent circular visitation - $options['link'][$id] = [$input]; + $options['link'][$id] = array($input); } }