server/src/app/Services/TranscriptManagerInterface.php
author ymh <ymh.work@gmail.com>
Tue, 15 Nov 2016 23:35:59 +0100
changeset 427 695111d1eec9
parent 396 c8f651e7e4ff
permissions -rw-r--r--
add some test + css adjustments

<?php
namespace CorpusParole\Services;

use CorpusParole\Models\Document;

interface TranscriptManagerInterface {

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

}