ClockInterface.php 206 B

12345678910111213
  1. <?php
  2. namespace Psr\Clock;
  3. use DateTimeImmutable;
  4. interface ClockInterface
  5. {
  6. /**
  7. * Returns the current time as a DateTimeImmutable Object
  8. */
  9. public function now(): DateTimeImmutable;
  10. }