subscriber = $subscriber; $this->customField = $customField; $this->value = $value; } /** * @return SubscriberEntity|null */ public function getSubscriber() { $this->safelyLoadToOneAssociation('subscriber'); return $this->subscriber; } public function getValue(): string { return $this->value; } /** * @return CustomFieldEntity|null */ public function getCustomField() { return $this->customField; } }