11 lines
119 B
PHP
11 lines
119 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Nsq\Reconnect;
|
|
|
|
interface TimeProvider
|
|
{
|
|
public function time(): int;
|
|
}
|