Skip to content

Commit cb47ae9

Browse files
committed
update graph constructor
1 parent 7eddfe3 commit cb47ae9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/WAC.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ private function getPublicGrants($resourceUri) {
154154

155155
$acl = $this->filesystem->read($aclPath);
156156

157-
$graph = new \EasyRdf_Graph();
157+
$graph = new \EasyRdf\Graph();
158158

159159
// error_log("PARSE ACL from $aclPath with base " . $this->getAclBase($aclPath));
160160
$graph->parse($acl, Format::TURTLE, $this->getAclBase($aclPath));
@@ -192,7 +192,7 @@ private function getUserGrants($resourceUri, $webId) {
192192
}
193193
$acl = $this->filesystem->read($aclPath);
194194

195-
$graph = new \EasyRdf_Graph();
195+
$graph = new \EasyRdf\Graph();
196196
$graph->parse($acl, Format::TURTLE, $this->getAclBase($aclPath));
197197

198198
// error_log("GET GRANTS for $webId");
@@ -256,7 +256,7 @@ private function getOriginGrants($resourceUri, $origin) {
256256
}
257257
$acl = $this->filesystem->read($aclPath);
258258

259-
$graph = new \EasyRdf_Graph();
259+
$graph = new \EasyRdf\Graph();
260260
$graph->parse($acl, Format::TURTLE, $this->getAclBase($aclPath));
261261

262262
// error_log("GET GRANTS for $origin");

0 commit comments

Comments
 (0)