When merging ore:aggregation, process the license correctly, if different or null, the default is use, if the same, this is the value used
<?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;
}
}