Files
TwoFactorAuth/tests/Providers/Time/TestTimeProvider.php
T
2021-02-03 09:31:07 +00:00

21 lines
305 B
PHP

<?php
namespace Tests\Providers\Time;
use RobThree\Auth\Providers\Time\ITimeProvider;
class TestTimeProvider implements ITimeProvider
{
private $time;
function __construct($time)
{
$this->time = $time;
}
public function getTime()
{
return $this->time;
}
}