Files
huangjingfen/pro_v3.5.1/vendor/godruoyi/php-snowflake/src/SequenceResolver.php
panchengyong 7acbf45ff7 new files
2026-03-07 22:29:07 +08:00

23 lines
419 B
PHP

<?php
/*
* This file is part of the godruoyi/php-snowflake.
*
* (c) Godruoyi <g@godruoyi.com>
*
* This source file is subject to the MIT license that is bundled.
*/
namespace Godruoyi\Snowflake;
interface SequenceResolver
{
/**
* The snowflake.
*
* @param int|string $currentTime current timestamp: milliseconds
* @return int
*/
public function sequence(int $currentTime);
}