Add $options param.

This commit is contained in:
Dave Longley 2013-08-06 14:07:21 -04:00
parent 83d974a06f
commit ff79a799ba
1 changed files with 2 additions and 1 deletions

View File

@ -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);