id = $id; $this->nom = $nom; $this->description = $description; $this->dateCreation = $dateCreation; $this->estValide = false; } //Nom public function getNom(){ return $this->nom; } //Id public function getid(){ return $this->id; } //Description public function getDescription(){ return $this->description; } //DateCreation public function getDateCreation(){ return $this->dateCreation; } //EstValide public function getEstValide(){ return $this->estValide; } }