server/src/app/Services/TranscriptManagerInterface.php
author Chloe Laisne <chloe.laisne@gmail.com>
Tue, 05 Jul 2016 01:30:27 +0200
changeset 227 5c9250f55f4b
parent 163 59c68fc4848e
child 396 c8f651e7e4ff
permissions -rw-r--r--
Basic notice logic from query parameters Playlist component notice open/close styles

<?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);

}