1
0
mirror of https://github.com/flarum/core.git synced 2025-07-26 03:01:22 +02:00

Remove incorrect attribute

This commit is contained in:
Franz Liedke
2018-07-16 15:41:25 +02:00
parent 177ac74596
commit dc7c31e1c2

View File

@@ -165,10 +165,9 @@ class CommentPost extends Post
/** /**
* Get the content rendered as HTML. * Get the content rendered as HTML.
* *
* @param string $value
* @return string * @return string
*/ */
public function getContentHtmlAttribute($value) public function getContentHtmlAttribute()
{ {
return static::$formatter->render($this->attributes['content'], $this); return static::$formatter->render($this->attributes['content'], $this);
} }