diff --git a/Entity/Email.php~ b/Entity/Email.php~ deleted file mode 100644 index 6baff1b..0000000 --- a/Entity/Email.php~ +++ /dev/null @@ -1,422 +0,0 @@ -status = self::STATUS_QUEUE; - } - - /** - * Get id - * - * @return integer - */ - public function getId() - { - return $this->id; - } - - - - /** - * Set messageFrom - * - * @param string $messageFrom - * - * @return Email - */ - public function setMessageFrom($messageFrom) - { - $this->messageFrom = $messageFrom; - - return $this; - } - - /** - * Get messageFrom - * - * @return string - */ - public function getMessageFrom() - { - return $this->messageFrom; - } - - /** - * Set messageTo - * - * @param string $messageTo - * - * @return Email - */ - public function setMessageTo($messageTo) - { - $this->messageTo = $messageTo; - - return $this; - } - - /** - * Get messageTo - * - * @return string - */ - public function getMessageTo() - { - return $this->messageTo; - } - - /** - * Set messageSubject - * - * @param string $messageSubject - * - * @return Email - */ - public function setMessageSubject($messageSubject) - { - $this->messageSubject = $messageSubject; - - return $this; - } - - /** - * Get messageSubject - * - * @return string - */ - public function getMessageSubject() - { - return $this->messageSubject; - } - - /** - * Set messageBody - * - * @param string $messageBody - * - * @return Email - */ - public function setMessageBody($messageBody) - { - $this->messageBody = $messageBody; - - return $this; - } - - /** - * Get messageBody - * - * @return string - */ - public function getMessageBody() - { - return $this->messageBody; - } - - /** - * Set createdOn - * @ORM\PrePersist - * - * @return Email - */ - public function setCreatedOn() - { - $this->createdOn = new \DateTime(); - - return $this; - } - - /** - * Get createdOn - * - * @return \DateTime - */ - public function getCreatedOn() - { - return $this->createdOn; - } - - /** - * Set filename - * - * @param string $filename - * - * @return Email - */ - public function setFilename($filename) - { - $this->filename = $filename; - - return $this; - } - - /** - * Get filename - * - * @return string - */ - public function getFilename() - { - return $this->filename; - } - - /** - * @return string - */ - public function getPath() - { - return $this->path; - } - - /** - * @param string $path - * @return Email - */ - public function setPath($path) - { - $this->path = $path; - return $this; - } - - /** - * Set status - * - * @param string $status - * - * @return Email - */ - public function setStatus($status) - { - $this->status = $status; - - return $this; - } - - /** - * Get status - * - * @return string - */ - public function getStatus() - { - return $this->status; - } - - /** - * @return string - */ - public function getRetryCount() - { - return $this->retryCount; - } - - /** - * @param string $retryCount - * @return Email - */ - public function setRetryCount($retryCount) - { - $this->retryCount = $retryCount; - return $this; - } - - /** - * Set lastCheck - * - * @param \DateTime $lastCheck - * - * @return Email - */ - public function setLastCheck($lastCheck) - { - $this->lastCheck = $lastCheck; - - return $this; - } - - /** - * Get lastCheck - * - * @return \DateTime - */ - public function getLastCheck() - { - return $this->lastCheck; - } - - /** - * @return string - */ - public function getMessageCc() - { - return $this->messageCc; - } - - /** - * @param string $messageCc - * @return Email - */ - public function setMessageCc($messageCc) - { - $this->messageCc = $messageCc; - return $this; - } - - /** - * @return string - */ - public function getMessageBcc() - { - return $this->messageBcc; - } - - /** - * @param string $messageBcc - * @return Email - */ - public function setMessageBcc($messageBcc) - { - $this->messageBcc = $messageBcc; - return $this; - } - - /** - * @return array - */ - public function getAttachments() - { - return $this->attachments; - } - - /** - * @param array $attachments - * @return Email - */ - public function setAttachments($attachments) - { - $this->attachments = $attachments; - return $this; - } - -} diff --git a/Entity/Smtp.php~ b/Entity/Smtp.php~ deleted file mode 100644 index 5b2598c..0000000 --- a/Entity/Smtp.php~ +++ /dev/null @@ -1,257 +0,0 @@ -enabled = true; - } - - /** - * @return integer - */ - public function getId() { - return $this->id; - } - - /** - * @return string - */ - public function getHost() - { - return $this->host; - } - - /** - * @param string $host - * @return Smtp - */ - public function setHost($host) - { - $this->host = $host; - return $this; - } - - /** - * @return string - */ - public function getPort() - { - return $this->port; - } - - /** - * @param string $port - * @return Smtp - */ - public function setPort($port) - { - $this->port = $port; - return $this; - } - - /** - * @return string - */ - public function getEncryption() - { - return $this->encryption; - } - - /** - * @param string $encryption - * @return Smtp - */ - public function setEncryption($encryption) - { - $this->encryption = $encryption; - return $this; - } - - /** - * @return string - */ - public function getTransport() - { - return $this->transport; - } - - /** - * @param string $transport - * @return Smtp - */ - public function setTransport($transport) - { - $this->transport = $transport; - return $this; - } - - /** - * @return string - */ - public function getUser() - { - return $this->user; - } - - /** - * @param string $user - * @return Smtp - */ - public function setUser($user) - { - $this->user = $user; - return $this; - } - - /** - * @return string - */ - public function getPassword() - { - return $this->password; - } - - /** - * @param string $password - * @return Smtp - */ - public function setPassword($password) - { - $this->password = $password; - return $this; - } - - /** - * @return string - */ - public function getEnvironment() - { - return $this->environment; - } - - /** - * @param string $environment - * @return Smtp - */ - public function setEnvironment($environment) - { - $this->environment = $environment; - return $this; - } - - - - /** - * Set uniqueId - * - * @param string $uniqueId - * - * @return Smtp - */ - public function setUniqueId($uniqueId) - { - $this->uniqueId = $uniqueId; - - return $this; - } - - /** - * Get uniqueId - * - * @return string - */ - public function getUniqueId() - { - return $this->uniqueId; - } -}