Disallow reseting last engagement via setter

[MAILPOET-3762]
This commit is contained in:
Rostislav Wolny
2021-09-03 15:26:02 +02:00
committed by Veljko V
parent ae2d450dce
commit a6b58e501a

View File

@@ -448,7 +448,7 @@ class SubscriberEntity {
return $this->lastEngagementAt;
}
public function setLastEngagementAt(?DateTimeInterface $lastEngagementAt): void {
public function setLastEngagementAt(DateTimeInterface $lastEngagementAt): void {
$this->lastEngagementAt = $lastEngagementAt;
}