Use "array" syntax instead of "[]" shorthand.

This commit is contained in:
Dave Longley 2014-12-05 16:37:31 -05:00
parent e06d20062a
commit 362a8cb387

View file

@ -4203,7 +4203,7 @@ class JsonLdProcessor {
} }
} else { } else {
// prevent circular visitation // prevent circular visitation
$options['link'][$id] = [$input]; $options['link'][$id] = array($input);
} }
} }