При создании новой записи, срабатывает beforeSave, тут все хорошо. Но при обновлении записи уже не срабатывает. Что я делаю не так?
public function beforeSave($insert)
{
if ($this->isAttributeChanged('communication')) {
$this->communication = json_encode($this->communication);
}
$this->communication = json_encode($this->communication);
return parent::beforeSave($insert);
}
public function afterFind()
{
parent::afterFind();
$this->communication = str_replace('"', '"', $this->communication);
$this->communication = json_decode($this->communication);
}