Add $options param.

This commit is contained in:
Dave Longley 2013-08-06 14:07:21 -04:00
parent 83d974a06f
commit ff79a799ba

View file

@ -3078,10 +3078,11 @@ class JsonLdProcessor {
* *
* @param stdClass $graph the graph to create RDF triples for. * @param stdClass $graph the graph to create RDF triples for.
* @param UniqueNamer $namer for assigning bnode names. * @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. * @return array the array of RDF triples for the given graph.
*/ */
protected function _graphToRDF($graph, $namer) { protected function _graphToRDF($graph, $namer, $options) {
$rval = array(); $rval = array();
$ids = array_keys((array)$graph); $ids = array_keys((array)$graph);