server/src/app/Services/TranscriptManagerInterface.php
author ymh <ymh.work@gmail.com>
Mon, 19 Dec 2016 21:58:29 +0100
changeset 478 b621657bb436
parent 396 c8f651e7e4ff
permissions -rw-r--r--
remove unnecessary comments

<?php
namespace CorpusParole\Services;

use CorpusParole\Models\Document;

interface TranscriptManagerInterface {

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

}