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

17
php/Classe/MeteoVille.php Normal file
View File

@@ -0,0 +1,17 @@
<?php
class MeteoVille
{
private int $id;
private int $temperature;
private int $vent;
public function __construct(int $id,int $temperature,int $vent)
{
$this->id=$id;
$this->temperature=$temperature;
$this->vent=$vent;
}
}