Modification chemin
This commit is contained in:
15
php/Classe/Pollution.php
Normal file
15
php/Classe/Pollution.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
|
||||
class Pollution
|
||||
{
|
||||
private int $id;
|
||||
private int $niveauPollution;
|
||||
private string $description;
|
||||
|
||||
function __construct(int $id,int $niveauPollution,string $description){
|
||||
$this->id = $id;
|
||||
$this->niveauPollution = $niveauPollution;
|
||||
$this->description = $description;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user