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