for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace OmnideskBundle\Model;
/**
* Class Staff
* @package OmnideskBundle\Model
*/
class Staff
{
* @var int
private $id;
* @var string
private $email;
private $fullName;
private $signature;
private $thumbnail;
* @var bool
private $active;
* @var \DateTime
private $createdAt;
private $updatedAt;
* @return int
public function getId()
return $this->id;
}
* @param int $id
* @return $this
public function setId($id)
$this->id = $id;
return $this;
* @return string
public function getEmail()
return $this->email;
* @param string $email
public function setEmail($email)
$this->email = $email;
public function getFullName()
return $this->fullName;
* @param string $fullName
public function setFullName($fullName)
$this->fullName = $fullName;
public function getSignature()
return $this->signature;
* @param string $signature
public function setSignature($signature)
$this->signature = $signature;
public function getThumbnail()
return $this->thumbnail;
* @param string $thumbnail
public function setThumbnail($thumbnail)
$this->thumbnail = $thumbnail;
* @return bool
public function isActive()
return $this->active;
* @param bool $active
public function setActive($active)
$this->active = $active;
* @return \DateTime
public function getCreatedAt()
return $this->createdAt;
* @param \DateTime $createdAt
public function setCreatedAt(\DateTime $createdAt)
$this->createdAt = $createdAt;
public function getUpdatedAt()
return $this->updatedAt;
* @param \DateTime $updatedAt
public function setUpdatedAt(\DateTime $updatedAt)
$this->updatedAt = $updatedAt;