Total Lines | 28 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
12 | interface Locale |
||
13 | { |
||
14 | /* ----------------------------------------------------------------- |
||
15 | | Getters & Setters |
||
16 | | ----------------------------------------------------------------- |
||
17 | */ |
||
18 | |||
19 | /** |
||
20 | * Get the locale key. |
||
21 | * |
||
22 | * @return string |
||
23 | */ |
||
24 | public function getKey(): string; |
||
25 | |||
26 | /** |
||
27 | * Get the locale translations path. |
||
28 | * |
||
29 | * @return string |
||
30 | */ |
||
31 | public function getPath(): string; |
||
32 | |||
33 | /** |
||
34 | * Get locale translations. |
||
35 | * |
||
36 | * @return array |
||
37 | */ |
||
38 | public function getTranslations(): array; |
||
39 | } |
||
40 |