server/src/app/Libraries/Mergers/RdfMerger.php
author nowmad@nowmads-macbook-pro.local
Fri, 15 Jan 2016 15:48:42 +0100
changeset 83 645786bb8587
parent 18 f2a40bbc27f6
permissions -rw-r--r--
update france map

<?php
namespace CorpusParole\Libraries\Mergers;

/**
 * merge graphes after mapping them.
 */
interface RdfMerger {


    /**
     * Merge an Rdf Graph from one model to another
     *
     * @param EasyRdf\Graph $baseGraph The graph used as base for the merge
     * @param EasyRdf\Graph $srcGraph The source graph with the new triples to add
     *
     * @return EasyRdf\Graph The new merged graph
     */
    function mergeGraph($baseGraph, $srcGraph);

}