Conditions | 3 |
Paths | 4 |
Total Lines | 14 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
4372 | 2 | public static function max($arg) |
|
4373 | { |
||
4374 | 2 | if (\is_array($arg)) { |
|
4375 | 2 | $arg = \implode('', $arg); |
|
4376 | } |
||
4377 | |||
4378 | 2 | $codepoints = self::codepoints($arg); |
|
4379 | 2 | if ($codepoints === []) { |
|
4380 | 2 | return null; |
|
4381 | } |
||
4382 | |||
4383 | 2 | $codepoint_max = \max($codepoints); |
|
4384 | |||
4385 | 2 | return self::chr((int) $codepoint_max); |
|
4386 | } |
||
13694 |