更新中にブール値を設定しようとしています。しかし、エラーを返します。
これがエンティティです。
/**
* Set status
*
* @param boolean $status
* @return CongressStaffer
*/
public function setMailStatus($status)
{
$this->status = $status;
return $this;
}
/**
* Get status
*
* @return boolean
*/
public function getMailStatus()
{
return $this->status;
}
$staffer->setMailStatus();
$em->flush();