mirror of
https://github.com/crmeb/CRMEB.git
synced 2026-03-29 00:30:53 +00:00
24 lines
411 B
PHP
24 lines
411 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 request ms
|
|
*
|
|
* @return int
|
|
*/
|
|
public function sequence(int $currentTime);
|
|
}
|