server/src/app/Services/TranscriptManagerInterface.php
author ymh <ymh.work@gmail.com>
Mon, 19 Mar 2018 16:04:43 +0100
changeset 571 6f852d0f7760
parent 396 c8f651e7e4ff
permissions -rw-r--r--
Samall readme correction

<?php
namespace CorpusParole\Services;

use CorpusParole\Models\Document;

interface TranscriptManagerInterface {

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

}