person->getCenter(); } /** * Get cFData. * * @return array */ public function getCFData() { return $this->cFData; } /** * Get cFGroup. * * @return CustomFieldsGroup */ public function getCFGroup() { return $this->cFGroup; } /** * Get date. * * @return DateTime */ public function getDate() { return $this->date; } /** * Get id. * * @return int */ public function getId() { return $this->id; } /** * Get person. * * @return Person */ public function getPerson() { return $this->person; } /** * Get scope. * * @return Scope */ public function getScope() { return $this->scope; } /** * Get user. * * @return User */ public function getUser() { return $this->user; } /** * Set cFData. * * @return Report */ public function setCFData(array $cFData) { $this->cFData = $cFData; return $this; } /** * Set cFGroup. * * @return Report */ public function setCFGroup(CustomFieldsGroup $cFGroup) { $this->cFGroup = $cFGroup; return $this; } /** * Set date. * * @param DateTime $date * * @return Report */ public function setDate($date) { $this->date = $date; return $this; } /** * Set person. * * @return Report */ public function setPerson(Person $person) { $this->person = $person; return $this; } /** * Set scope. * * @param string $scope * * @return Report */ public function setScope(Scope $scope) { $this->scope = $scope; return $this; } /** * Set user. * * @return Report */ public function setUser(User $user) { $this->user = $user; return $this; } }