improve document model and propagate changes. This include the change of document fixtures to better reflect what the api is effectively returning
<?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;
}
}