Files
TwoFactorAuth/lib/Providers/Time/ITimeProvider.php
T
2022-12-07 23:10:13 +01:00

12 lines
216 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();
}