| author | nowmad@nowmads-macbook-pro.local |
| Wed, 20 Jan 2016 23:05:52 +0100 | |
| changeset 91 | acfeddc7821d |
| parent 4 | f55970e41793 |
| child 277 | bd4bc1db4f40 |
| permissions | -rw-r--r-- |
<?php namespace CorpusParole\Libraries\RdfModel; use EasyRdf\Graph; /** * */ class RdfModelDelta { public function __construct($uri) { $this->deletedGraph = new Graph($uri); $this->addedGraph = new Graph($uri); } private $deletedGraph; private $addedGraph; public function getDeletedGraph() { return $this->deletedGraph; } public function getAddedGraph() { return $this->addedGraph; } }