Temperature.php 263 B

12345678910111213
  1. <?php
  2. namespace App\Yr\Forecast\Tabular\Time;
  3. class Temperature extends AbstractUnit {
  4. public function __construct(\SimpleXMLElement $xml) {
  5. parent::__construct(
  6. (float)$xml['value'],
  7. (string)$xml['unit']
  8. );
  9. }
  10. }