server/src/app/Services/TranscriptManagerInterface.php
author ymh <ymh.work@gmail.com>
Fri, 15 Sep 2017 14:38:59 +0200
changeset 547 3924c7b4ad8f
parent 396 c8f651e7e4ff
permissions -rw-r--r--
integrate cms changes for bugs #0028097, #0027866, #0028004

<?php
namespace CorpusParole\Services;

use CorpusParole\Models\Document;

interface TranscriptManagerInterface {

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

}