| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 6 | class Locale |
||
| 7 | { |
||
| 8 | use HydratorTrait; |
||
| 9 | |||
| 10 | /** @var string */ |
||
| 11 | protected $name; |
||
| 12 | /** @var string */ |
||
| 13 | protected $locale; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @return string |
||
| 17 | */ |
||
| 18 | public function getName(): string |
||
| 19 | { |
||
| 20 | return $this->name; |
||
| 21 | } |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @return string |
||
| 25 | */ |
||
| 26 | public function getLocale(): string |
||
| 29 | } |
||
| 30 | } |
||
| 31 |