Total Complexity | 2 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
13 | final class SetLocaleEvent |
||
14 | { |
||
15 | /** |
||
16 | * @param string $locale Locale determined by {@see Locale} middleware. |
||
17 | */ |
||
18 | 29 | public function __construct(private string $locale) |
|
20 | 29 | } |
|
21 | |||
22 | /** |
||
23 | * Get locale determined by {@see Locale} middleware. |
||
24 | * |
||
25 | * @return string Locale to use. |
||
26 | */ |
||
27 | 29 | public function getLocale(): string |
|
32 |