Notification.php
799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
namespace FootyRoom\Core\Notification;
use DateTime;
class Notification
{
/**
* @var int
*/
protected $id;
/**
* @var int
*/
protected $userId;
/**
* @var string
*/
protected $type;
/**
* @var string
*/
protected $content;
/**
* @var bool
*/
protected $isRead;
/**
* @var \DateTime
*/
protected $createdAt;
/**
* Constructor.
*
* @param int $userId
* @param string $type
* @param string $content
*/
public function __construct($userId, $type, $content)
{
$this->userId = $userId;
$this->type = $type;
$this->content = $content;
$this->createdAt = new DateTime();
$this->isRead = false;
}
}