TimeInterface.php 204 B

1234567891011
  1. <?php
  2. namespace App\Yr\Forecast\Tabular;
  3. interface TimeInterface {
  4. function getFrom(): \DateTimeImmutable;
  5. function getUntil(): \DateTimeImmutable;
  6. function getIterator(): \Generator;
  7. }
  8. ?>