Pressure.php 261 B

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