Add CommentEmbeddable to Activity : remoke remark field (Ref #21)

This commit is contained in:
Jean-Francois Monfort
2021-03-11 14:27:46 +01:00
parent cde3c900df
commit f35cb679b7
14 changed files with 240 additions and 210 deletions

View File

@@ -75,12 +75,6 @@ class Activity implements HasCenterInterface, HasScopeInterface
*/
private $durationTime;
/**
* @var string
* @ORM\Column(type="text")
*/
private $remark;
/**
* @var boolean
* @ORM\Column(type="boolean")
@@ -204,29 +198,6 @@ class Activity implements HasCenterInterface, HasScopeInterface
return $this->durationTime;
}
/**
* Set remark
*
* @param string $remark
* @return Activity
*/
public function setRemark($remark)
{
$this->remark = $remark;
return $this;
}
/**
* Get remark
*
* @return string
*/
public function getRemark()
{
return $this->remark;
}
/**
* Set attendee
*