ITimeProvider.php 179 B

12345678910
  1. <?php
  2. namespace RobThree\Auth\Providers\Time;
  3. interface ITimeProvider {
  4. /**
  5. * @return int the current timestamp according to this provider
  6. */
  7. public function getTime();
  8. }