Ajout classes PHP

This commit is contained in:
unknown
2020-12-04 01:22:13 +01:00
parent 86506b11de
commit 293402a191
5 changed files with 54 additions and 0 deletions

11
php/Spot.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
class spot
{
private int $id;
private string $nom;
private Ville $ville;
private Meteo $meteo;
private Pollution $pollution;
}