mirror of
https://github.com/RobThree/TwoFactorAuth.git
synced 2026-08-18 11:32:50 +00:00
14 lines
217 B
PHP
14 lines
217 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace RobThree\Auth\Providers\Time;
|
|
|
|
interface ITimeProvider
|
|
{
|
|
/**
|
|
* @return int the current timestamp according to this provider
|
|
*/
|
|
public function getTime();
|
|
}
|