NDI-2020/php/Classe/Spot.php

19 lines
416 B
PHP
Raw Normal View History

2020-12-04 01:22:13 +01:00
<?php
2020-12-04 01:31:37 +01:00
class Spot
2020-12-04 01:22:13 +01:00
{
private int $id;
private string $nom;
private Ville $ville;
2020-12-04 01:31:37 +01:00
private MeteoSpot $meteo;
2020-12-04 01:22:13 +01:00
private Pollution $pollution;
2020-12-04 02:47:09 +01:00
2020-12-04 03:19:36 +01:00
function __construct(int $id,string $nom,Ville $ville,Pollution $pollution,MeteoSpot $meteo){
2020-12-04 02:47:09 +01:00
$this->id = $id;
$this->nom = $nom;
$this->ville = $ville;
$this->pollution = $pollution;
$this->meteo = $meteo;
}
2020-12-04 01:22:13 +01:00
}