server/src/app/Libraries/RdfModel/RdfModelDelta.php
author nowmad@23.1.168.192.in-addr.arpa
Fri, 22 Jan 2016 11:23:23 +0100
changeset 97 32c0f831de45
parent 4 f55970e41793
child 277 bd4bc1db4f40
permissions -rw-r--r--
add controller for discours

<?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;
    }

}