mirror of
https://github.com/RobThree/TwoFactorAuth.git
synced 2026-08-19 01:02:35 +00:00
12 lines
191 B
PHP
12 lines
191 B
PHP
<?php
|
|
|
|
namespace RobThree\Auth\Providers\Time;
|
|
|
|
interface ITimeProvider
|
|
{
|
|
/**
|
|
* @return int the current timestamp according to this provider
|
|
*/
|
|
public function getTime();
|
|
}
|