server/src/app/Services/TranscriptManagerInterface.php
author ymh <ymh.work@gmail.com>
Wed, 05 Oct 2016 02:31:25 +0200
changeset 321 aefaad270b9b
parent 163 59c68fc4848e
child 396 c8f651e7e4ff
permissions -rw-r--r--
reimplement ThemeController using ES requests to be able to sort by label

<?php
namespace CorpusParole\Services;

use CorpusParole\Models\Document;

interface TranscriptManagerInterface {

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

}