ConvertableInterface.php 357 B

1234567891011121314151617
  1. <?php
  2. namespace App\Yr\Forecast\Tabular\Time;
  3. /**
  4. * Implemented on units that can be converted,
  5. * such as wind speed and temperature.
  6. */
  7. interface ConvertableInterface {
  8. /**
  9. * Convert the to a different unit
  10. *
  11. * @param string $unit The unit to convert to, eg UNIT_FTS
  12. */
  13. public function convertTo(string $unit): self;
  14. }
  15. ?>