You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
362 B
19 lines
362 B
<?php
|
|
|
|
namespace modeles;
|
|
|
|
class Tache
|
|
{
|
|
private string $nom;
|
|
private string $description;
|
|
private Date $dateCreation;
|
|
private bool $estValide;
|
|
|
|
public function __construct(String $nom, string $description, Date $dateCreation){
|
|
$this->nom = $nom;
|
|
$this->description = $description;
|
|
$this->dateCreation = $dateCreation;
|
|
$this->estValide = false;
|
|
}
|
|
|