for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Dazzle\Util\Support;
abstract class TimeSupport
{
/**
* Return timestamp for now.
*
* @return float
*/
public static function now()
return round(microtime(true)*1000);
}