for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Dazzle\Util\Support;
abstract class GeneratorSupport
{
/**
* Return uniqid prefixed with given string.
*
* @param string $name
* @return string
*/
public static function genId($name)
return uniqid($name, true);
}