Example #1
0
/**
 * Just for simplifying the Timers::setInterval method
 *
 *
 * @param callable | string $func
 * @param float $milliseconds
 *
 * @return integer
 */
function setInterval($func, $milliseconds)
{
    return Timers::setInterval($func, $milliseconds);
}