| Conditions | 2 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 32 | 4 | public static function assertCulture(string $value, string $message = '') |
|
| 33 | { |
||
| 34 | 4 | $haystack = include static::getCulturesFilename(); |
|
| 35 | 4 | $format = '%s contains an unsupported culture'; |
|
| 36 | 4 | $message = sprintf($message ?: $format, static::valueToString($value)); |
|
| 37 | |||
| 38 | 4 | return static::oneOf($value, $haystack, $message); |
|
| 39 | } |
||
| 57 |