blob: 4799f17d3e7adfa938f9d38968a3a52950b35d28 [file] [log] [blame]
Matthias Andreas Benkardb382b102021-01-02 15:32:21 +01001<?php
2
3namespace RobThree\Auth\Providers\Time;
4
5interface ITimeProvider
6{
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02007 /**
8 * @return int the current timestamp according to this provider
9 */
Matthias Andreas Benkardb382b102021-01-02 15:32:21 +010010 public function getTime();
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020011}