PHRAS-3595

This commit is contained in:
aynsix
2021-12-02 16:35:22 +03:00
parent b0458893fd
commit 2f93504ac5

View File

@@ -77,6 +77,11 @@ class FeedEntry
*/
private $feed;
/**
* @ORM\Column(name="notifyemail_on", type="datetime", nullable=true)
*/
private $notifyEmailOn;
/**
* Constructor
*/
@@ -213,7 +218,7 @@ class FeedEntry
/**
* Set updated
*
* @param \DateTime $updated
* @param \DateTime $updatedOn
* @return FeedEntry
*/
public function setUpdatedOn($updatedOn)
@@ -312,6 +317,26 @@ class FeedEntry
return $this->feed;
}
/**
* Get notifyEmailOn
*
* @return \DateTime|null
*/
public function getNotifyEmailOn()
{
return $this->notifyEmailOn;
}
/**
* Set notifyEmailOn
*
* @param \DateTime $notifyEmailOn
*/
public function setNotifyEmailOn($notifyEmailOn)
{
$this->notifyEmailOn = $notifyEmailOn;
}
/**
* Returns a boolean indicating whether the given User is the publisher of the entry.
*