ITimeProvider.php 191 B

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