| Total Complexity | 3 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | trait AssertCultureTrait |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * Validate culture |
||
| 27 | * |
||
| 28 | * @param string $value |
||
| 29 | * @param string $message |
||
| 30 | * |
||
| 31 | * @return null |
||
| 32 | * @throws \TxTextControl\ReportingCloud\Exception\InvalidArgumentException |
||
| 33 | */ |
||
| 34 | 12 | public static function assertCulture(string $value, string $message = '') |
|
| 41 | } |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Return cultures array |
||
| 45 | * |
||
| 46 | * @return array |
||
| 47 | */ |
||
| 48 | 12 | public static function getCultures(): array |
|
| 55 |