for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @filename Util.php
* @touch 09/11/2016 14:20
* @author wudege <[email protected]>
* @version 1.0.0
*/
namespace TokenAssistant;
final class Util
{
* Generate new token string
* @return string
public static function genToken()
return sha1(uniqid(mt_rand(), true));
}