Flarum\Core\Post\AbstractEventPost::setContentAttribute PHP Method

setContentAttribute() public method

Serialize the content attribute to be stored in the database as JSON.
public setContentAttribute ( string $value )
$value string
    public function setContentAttribute($value)
    {
        $this->attributes['content'] = json_encode($value);
    }