Statistics.php 357 B

12345678910111213141516171819202122
  1. <?php
  2. namespace App\Yr\Forecast\Tabular;
  3. class Statistics {
  4. private $temp = [];
  5. private $wind = [];
  6. private $count = 0;
  7. public function __construct() {
  8. $this->temp = $this->wind = [
  9. 'high' => null,
  10. 'low' => null,
  11. 'mean' => 0
  12. ];
  13. }
  14. public function analyse(Time $t) {
  15. }
  16. }
  17. ?>