| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | class Locale |
||
| 21 | { |
||
| 22 | use HydratorTrait; |
||
| 23 | |||
| 24 | /** @var string */ |
||
| 25 | protected $name; |
||
| 26 | /** @var string */ |
||
| 27 | protected $locale; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @return string |
||
| 31 | */ |
||
| 32 | 1 | public function getName(): string |
|
| 33 | { |
||
| 34 | 1 | return $this->name; |
|
| 35 | } |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @return string |
||
| 39 | */ |
||
| 40 | 1 | public function getLocale(): string |
|
| 43 | } |
||
| 44 | } |
||
| 45 |