1 | <?php |
||
23 | class DictionaryTranslation extends DictionaryBaseItem |
||
24 | { |
||
25 | /** |
||
26 | * @var |
||
27 | */ |
||
28 | protected $synonyms = []; |
||
29 | |||
30 | /** |
||
31 | * @var |
||
32 | */ |
||
33 | protected $meanings = []; |
||
34 | |||
35 | /** |
||
36 | * @var |
||
37 | */ |
||
38 | protected $examples = []; |
||
39 | |||
40 | /** |
||
41 | * |
||
42 | */ |
||
43 | 2 | public function __construct($translation) |
|
65 | |||
66 | /** |
||
67 | * @return array |
||
68 | */ |
||
69 | 1 | public function getSynonyms() |
|
73 | |||
74 | /** |
||
75 | * @return array |
||
76 | */ |
||
77 | 1 | public function getMeanings() |
|
81 | |||
82 | /** |
||
83 | * @return array |
||
84 | */ |
||
85 | 1 | public function getExamples() |
|
89 | } |
||
90 |