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

19
php/Classe/Spot.php Normal file
View File

@@ -0,0 +1,19 @@
<?php
class Spot
{
private int $id;
private string $nom;
private Ville $ville;
private MeteoSpot $meteo;
private Pollution $pollution;
function __construct(int $id,string $nom,Ville $ville,Pollution $pollution,MeteoSpot $meteo){
$this->id = $id;
$this->nom = $nom;
$this->ville = $ville;
$this->pollution = $pollution;
$this->meteo = $meteo;
}
}