for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace OmnideskBundle\Entity;
/**
* Class Message
* @package OmnideskBundle\Entity
*/
class Message
{
* @var int
private $id;
private $userId;
private $staffId;
* @var string
private $content;
private $contentHtml;
* @var array
private $attachments;
private $note;
* @var \DateTime
private $createdAt;
* @return int
public function getId()
return $this->id;
}
* @param int $id
* @return $this
public function setId($id)
$this->id = $id;
return $this;
public function getUserId()
return $this->userId;
* @param int $userId
public function setUserId($userId)
$this->userId = $userId;
public function getStaffId()
return $this->staffId;
* @param int $staffId
public function setStaffId($staffId)
$this->staffId = $staffId;
* @return string
public function getContent()
return $this->content;
* @param string $content
public function setContent($content)
$this->content = $content;
public function getContentHtml()
return $this->contentHtml;
* @param string $contentHtml
public function setContentHtml($contentHtml)
$this->contentHtml = $contentHtml;
* @return array
public function getAttachments()
return $this->attachments;
* @param array $attachments
public function setAttachments($attachments)
$this->attachments = $attachments;
public function getNote()
return $this->note;
* @param string $note
public function setNote($note)
$this->note = $note;
* @return \DateTime
public function getCreatedAt()
return $this->createdAt;
* @param \DateTime $createdAt
public function setCreatedAt(\DateTime $createdAt)
$this->createdAt = $createdAt;