Files
TwoFactorAuth/lib/Providers/Time/ITimeProvider.php
T
William Hall 33a32cb099 📚 doc blocks
2021-03-08 18:24:44 +00:00

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