1 | <?php |
||
5 | trait HasHmongMienVerboseMethods |
||
6 | { |
||
7 | /** |
||
8 | * Retrieve the translation in another locale. |
||
9 | * |
||
10 | * @param string $locale |
||
11 | * @return mixed |
||
12 | */ |
||
13 | abstract public function getTranslationIn(string $locale); |
||
14 | |||
15 | /** |
||
16 | * Function to retrieve the name in Hmong. |
||
17 | * |
||
18 | * @return mixed |
||
19 | */ |
||
20 | public function inHmong() : string |
||
24 | } |
||
25 |