1 | <?php |
||
23 | class DictionaryDefinition extends DictionaryBaseItem |
||
24 | { |
||
25 | /** |
||
26 | * @var |
||
27 | */ |
||
28 | protected $transcription; |
||
29 | |||
30 | /** |
||
31 | * @var |
||
32 | */ |
||
33 | protected $translations = []; |
||
34 | |||
35 | /** |
||
36 | * |
||
37 | */ |
||
38 | 2 | public function __construct($definition) |
|
52 | |||
53 | /** |
||
54 | * @return string |
||
55 | */ |
||
56 | 1 | public function getTranscription() |
|
60 | |||
61 | /** |
||
62 | * @return array |
||
63 | */ |
||
64 | 2 | public function getTranslations() |
|
68 | } |
||
69 |