author | ymh <ymh.work@gmail.com> |
Tue, 08 Nov 2016 09:01:38 +0100 | |
changeset 396 | c8f651e7e4ff |
parent 163 | 59c68fc4848e |
permissions | -rw-r--r-- |
163 | 1 |
<?php |
2 |
namespace CorpusParole\Services; |
|
3 |
||
4 |
use CorpusParole\Models\Document; |
|
5 |
||
6 |
interface TranscriptManagerInterface { |
|
7 |
||
396
c8f651e7e4ff
correct proble on transcript manager
ymh <ymh.work@gmail.com>
parents:
163
diff
changeset
|
8 |
function getConverter($converterKey, Document $document, $source); |
c8f651e7e4ff
correct proble on transcript manager
ymh <ymh.work@gmail.com>
parents:
163
diff
changeset
|
9 |
function getConverterUrl($converterKey, Document $document, $url); |
163 | 10 |
|
11 |
} |