1 | <?php |
||
7 | trait Translatable |
||
8 | { |
||
9 | use HasTranslations; |
||
10 | |||
11 | /** |
||
12 | * @param string $key |
||
13 | * |
||
14 | * @param string $locale |
||
15 | * @param bool $useFallbackLocale |
||
16 | * |
||
17 | * @return mixed|string |
||
18 | */ |
||
19 | |||
20 | |||
21 | protected function normalizeLocale(string $key, string $locale, bool $useFallbackLocale) : string |
||
37 | } |
||
38 |