mirror of
https://github.com/RobThree/TwoFactorAuth.git
synced 2026-08-24 12:36:34 +00:00
9 lines
107 B
PHP
9 lines
107 B
PHP
<?php
|
|
|
|
namespace RobThree\Auth\Providers\Time;
|
|
|
|
interface ITimeProvider
|
|
{
|
|
public function getTime();
|
|
}
|