NDI-2020/php/Classe/MeteoSpot.php

18 lines
312 B
PHP
Raw Normal View History

2020-12-04 01:22:13 +01:00
<?php
class MeteoSpot
{
private int $id;
private int $houle;
private int $maree;
private int $vent;
2020-12-04 02:52:32 +01:00
public function __construct(int $id,int $houle,int $maree,int $vent)
{
$this->id=$id;
$this->houle=$houle;
$this->mare=$maree;
$this->vent=$vent;
}
2020-12-04 01:22:13 +01:00
}