author | Chloe Laisne <chloe.laisne@gmail.com> |
Fri, 05 Aug 2016 14:55:45 +0200 | |
changeset 251 | ac320de33ec7 |
parent 4 | f55970e41793 |
child 277 | bd4bc1db4f40 |
permissions | -rw-r--r-- |
4 | 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 |
} |