From ff79a799ba6a7eef9bcef6f0536ea3686e4da166 Mon Sep 17 00:00:00 2001 From: Dave Longley Date: Tue, 6 Aug 2013 14:07:21 -0400 Subject: [PATCH] Add $options param. --- jsonld.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jsonld.php b/jsonld.php index eed914e..6cfb487 100644 --- a/jsonld.php +++ b/jsonld.php @@ -3078,10 +3078,11 @@ class JsonLdProcessor { * * @param stdClass $graph the graph to create RDF triples for. * @param UniqueNamer $namer for assigning bnode names. + * @param assoc $options the RDF serialization options. * * @return array the array of RDF triples for the given graph. */ - protected function _graphToRDF($graph, $namer) { + protected function _graphToRDF($graph, $namer, $options) { $rval = array(); $ids = array_keys((array)$graph);