Refactor newsletter data factories to doctrine

[MAILPOET-3627]
This commit is contained in:
Pavel Dohnal
2021-06-02 12:35:45 +02:00
committed by Veljko V
parent 093c1c4669
commit 7bf6c44ea0
38 changed files with 282 additions and 162 deletions

View File

@ -118,6 +118,13 @@ class StatisticsClickEntity {
$this->subscriber = $subscriber;
}
/**
* @return SubscriberEntity|null
*/
public function getSubscriber(): ?SubscriberEntity {
return $this->subscriber;
}
/**
* @param NewsletterLinkEntity|null $link
*/