server/src/app/Services/TranscriptManagerInterface.php
author ymh <ymh.work@gmail.com>
Fri, 23 Dec 2016 13:24:04 +0100
changeset 486 44a5801ed246
parent 396 c8f651e7e4ff
permissions -rw-r--r--
Added tag 0.0.14 for changeset 7b84847868a9

<?php
namespace CorpusParole\Services;

use CorpusParole\Models\Document;

interface TranscriptManagerInterface {

    function getConverter($converterKey, Document $document, $source);
    function getConverterUrl($converterKey, Document $document, $url);

}