| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 34 | 530 | public static function uuidv4() |
|
| 35 | { |
||
| 36 | 530 | return implode('-', [ |
|
| 37 | 530 | bin2hex(random_bytes(4)), |
|
| 38 | 530 | bin2hex(random_bytes(2)), |
|
| 39 | 530 | bin2hex(chr((ord(random_bytes(1)) & 0x0F) | 0x40)) . bin2hex(random_bytes(1)), |
|
| 40 | 530 | bin2hex(chr((ord(random_bytes(1)) & 0x3F) | 0x80)) . bin2hex(random_bytes(1)), |
|
| 41 | 530 | bin2hex(random_bytes(6)) |
|
| 42 | ]); |
||
| 43 | } |
||
| 44 | } |
||
| 45 |