NDI-2020/php/MeteoSpot.php
lemoinealexandre 3f07c6b0b4 contructeur
2020-12-04 02:52:32 +01:00

18 lines
312 B
PHP

<?php
class MeteoSpot
{
private int $id;
private int $houle;
private int $maree;
private int $vent;
public function __construct(int $id,int $houle,int $maree,int $vent)
{
$this->id=$id;
$this->houle=$houle;
$this->mare=$maree;
$this->vent=$vent;
}
}