for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AntonyThorpe\SilverShopUnleashed;
/**
* Utility
*/
class Utils
{
* Create a global unique id and return it
public static function createGuid(): string
return strtolower(sprintf(
'%04X%04X-%04X-%04X-%04X-%04X%04X%04X',
mt_rand(0, 65535),
mt_rand(16384, 20479),
mt_rand(32768, 49151),
mt_rand(0, 65535)
));
}