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.
91 lines
1.8 KiB
91 lines
1.8 KiB
<?php
|
|
|
|
namespace Model;
|
|
|
|
use DateTime;
|
|
|
|
class Notification
|
|
{
|
|
private int $idNotif;
|
|
private string $message;
|
|
private \DateTime $date;
|
|
private string $statut;
|
|
private string $urgence;
|
|
private int $toUserId;
|
|
/**
|
|
* @param string $type
|
|
* @param string $message
|
|
*/
|
|
public function __construct(
|
|
int $idNotif,
|
|
string $message,
|
|
DateTime $date,
|
|
string $statut,
|
|
string $urgence,
|
|
int $toUserId
|
|
)
|
|
{
|
|
$this->idNotif = $idNotif;
|
|
$this->message = $message;
|
|
$this->date = $date;
|
|
$this->statut = $statut;
|
|
$this->urgence = $urgence;
|
|
$this->toUserId =$toUserId;
|
|
}
|
|
|
|
public function getId(){ return $this->idNotif;}
|
|
public function getDate(){ return $this->date;}
|
|
public function getStatut(){ return $this->statut;}
|
|
public function getUrgence(){ return $this->urgence;}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getType(): string
|
|
{
|
|
return $this->type;
|
|
}
|
|
|
|
/**
|
|
* @param string $type
|
|
*/
|
|
public function setType(string $type): void
|
|
{
|
|
$this->type = $type;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getMessage(): string
|
|
{
|
|
return $this->message;
|
|
}
|
|
|
|
/**
|
|
* @param string $message
|
|
*/
|
|
public function setMessage(string $message): void
|
|
{
|
|
$this->message = $message;
|
|
}
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getToUserId(): int
|
|
{
|
|
return $this->toUserId;
|
|
}
|
|
|
|
/**
|
|
* @param int $toUserId
|
|
*/
|
|
public function setToUserId(int $toUserId): void
|
|
{
|
|
$this->toUserId = $toUserId;
|
|
}
|
|
public function __toString(): string
|
|
{
|
|
return var_export($this, true);
|
|
}
|
|
} |