server/src/app/Services/TranscriptManagerInterface.php
author ymh <ymh.work@gmail.com>
Fri, 17 Nov 2017 16:30:35 +0100
changeset 565 5e02aa0899f7
parent 396 c8f651e7e4ff
permissions -rw-r--r--
correct help message

<?php
namespace CorpusParole\Services;

use CorpusParole\Models\Document;

interface TranscriptManagerInterface {

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

}