Owl\Services\CommentService::updateComment PHP Méthode

updateComment() public méthode

Update a comment's body.
public updateComment ( $id, $body ) : Illuminate\Database\Eloquent\Model
$id int
$body string
Résultat Illuminate\Database\Eloquent\Model
    public function updateComment($id, $body)
    {
        return $this->commentRepo->updateComment($id, $body);
    }