Apply fixes from StyleCI

This commit is contained in:
Manish Verma
2021-03-12 13:58:55 +00:00
committed by StyleCI Bot
parent 309a1557d9
commit 1026f8d620
3 changed files with 11 additions and 10 deletions

View File

@@ -15,21 +15,21 @@ class Comment extends BaseModel
public function setNameAttribute($value)
{
$this->attributes['name'] = strip_tags($value);
$this->attributes['name'] = strip_tags($value);
}
public function setCommentAttribute($value)
{
$this->attributes['comment'] = strip_tags($value);
$this->attributes['comment'] = strip_tags($value);
}
public function getNameAttribute($value)
{
return strip_tags($value);
return strip_tags($value);
}
public function getCommentAttribute($value)
{
return strip_tags($value);
return strip_tags($value);
}
}