Modification chemin

This commit is contained in:
unknown
2020-12-04 03:19:36 +01:00
parent d9c456992b
commit dbe009f11f
10 changed files with 23 additions and 5 deletions

18
php/Classe/MeteoSpot.php Normal file
View File

@@ -0,0 +1,18 @@
<?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;
}
}