NDI-2020/php/Spot.php
2020-12-04 02:47:09 +01:00

19 lines
415 B
PHP

<?php
class Spot
{
private int $id;
private string $nom;
private Ville $ville;
private MeteoSpot $meteo;
private Pollution $pollution;
function __contruct(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;
}
}