Fix extraneous parenthesis

This commit is contained in:
Hypolite Petovan 2018-10-08 20:41:00 +00:00
parent f62652abff
commit ca3916d10d
1 changed files with 1 additions and 1 deletions

View File

@ -4293,7 +4293,7 @@ class JsonLdProcessor
sort($nquads);
// cache and return hashed quads
$hash = $bnodes->{$id}->hash = hash('sha256', (implode($nquads));
$hash = $bnodes->{$id}->hash = hash('sha256', implode($nquads));
return $hash;
}