15 lines
316 B
PHP
15 lines
316 B
PHP
<?php
|
|
|
|
|
|
class Pollution
|
|
{
|
|
private int $id;
|
|
private int $niveauPollution;
|
|
private string $description;
|
|
|
|
function __contruct(int $id,int $niveauPollution,string $description){
|
|
$this->id = $id;
|
|
$this->niveauPollution = $niveauPollution;
|
|
$this->description = $description;
|
|
}
|
|
} |