| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | 10 | public static function generate(int $length = 8): string |
|
| 12 | { |
||
| 13 | 10 | $chunksNumber = ceil($length / 4); |
|
| 14 | |||
| 15 | 10 | $hashString = ''; |
|
| 16 | |||
| 17 | 10 | while ($chunksNumber > 0) { |
|
| 18 | 10 | $chunksNumber--; |
|
| 19 | 10 | $hashString = sprintf('%s%04x', $hashString, mt_rand(0, 0xffff)); |
|
| 20 | } |
||
| 21 | |||
| 22 | 10 | return substr($hashString, 0, $length); |
|
| 23 | } |
||
| 24 | } |
||
| 25 |