DiffInterface.php 127 B

12345678
  1. <?php
  2. namespace App\Yr\Forecast\Tabular\Time;
  3. interface DiffInterface {
  4. public function diff(DiffInterface $e): bool;
  5. }