| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | public function __construct(NotificationId $notificationId, UserId $userId, NotificationBody $body) |
||
| 29 | { |
||
| 30 | $this->notificationId = $notificationId; |
||
| 31 | $this->userId = $userId; |
||
| 32 | $this->body = $body; |
||
| 33 | $this->status = NotificationStatus::unread(); |
||
| 34 | $this->occurredOn = new \DateTimeImmutable(); |
||
| 35 | } |
||
| 36 | |||
| 62 |