server/src/app/Services/TranscriptManagerInterface.php
author ymh <ymh.work@gmail.com>
Fri, 15 Sep 2017 11:26:43 +0200
changeset 546 178f9add0784
parent 396 c8f651e7e4ff
permissions -rw-r--r--
Correct bug #28104 : affichage des titres longs dans le transcript

<?php
namespace CorpusParole\Services;

use CorpusParole\Models\Document;

interface TranscriptManagerInterface {

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

}