Conditions | 3 |
Paths | 4 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
28 | 5 | public static function generate($length = 10, $charset = '') |
|
29 | { |
||
30 | 5 | $charset = $charset ?: self::$DEFAULT_CHARSET; |
|
31 | 5 | $charset_size = strlen($charset); |
|
32 | 5 | $uid = ''; |
|
33 | 5 | while ($length-- > 0) { |
|
34 | 4 | $uid .= $charset[random_int(0, $charset_size - 1)]; |
|
35 | } |
||
36 | |||
37 | 5 | return $uid; |
|
38 | } |
||
39 | } |
||
40 |