server/src/app/Libraries/RdfModel/RdfModelDelta.php
changeset 4 f55970e41793
child 277 bd4bc1db4f40
equal deleted inserted replaced
3:2b3247d02769 4:f55970e41793
       
     1 <?php
       
     2 namespace CorpusParole\Libraries\RdfModel;
       
     3 
       
     4 use EasyRdf\Graph;
       
     5 
       
     6 /**
       
     7  *
       
     8  */
       
     9 class RdfModelDelta {
       
    10 
       
    11     public function __construct($uri) {
       
    12         $this->deletedGraph = new Graph($uri);
       
    13         $this->addedGraph = new Graph($uri);
       
    14     }
       
    15 
       
    16     private $deletedGraph;
       
    17     private $addedGraph;
       
    18 
       
    19     public function getDeletedGraph() {
       
    20         return $this->deletedGraph;
       
    21     }
       
    22 
       
    23     public function getAddedGraph() {
       
    24         return $this->addedGraph;
       
    25     }
       
    26 
       
    27 }