| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 3 |
| CRAP Score | 2.0625 |
| Changes | 0 | ||
| 1 | <?php |
||
| 33 | 1 | public static function GUID() { |
|
| 34 | 1 | if (function_exists('com_create_guid') === true) |
|
| 35 | { |
||
| 36 | return trim(com_create_guid(), '{}'); |
||
| 37 | } |
||
| 38 | |||
| 39 | 1 | return sprintf('%04X%04X-%04X-%04X-%04X-%04X%04X%04X', mt_rand(0, 65535), mt_rand(0, 65535), mt_rand(0, 65535), mt_rand(16384, 20479), mt_rand(32768, 49151), mt_rand(0, 65535), mt_rand(0, 65535), mt_rand(0, 65535)); |
|
| 40 | } |
||
| 41 | } |