PHP Interface Owl\Repositories\CommentRepositoryInterface

Afficher le fichier Open project: owl/owl

Méthodes publiques

Méthode Description
createComment ( $comment ) : Illuminate\Database\Eloquent\Model Create a new comment.
deleteComment ( $id ) : boolean Delete a comment.
getCommentById ( $id ) : Illuminate\Database\Eloquent\Model Get a comment by comment id.
updateComment ( $id, $body ) : Illuminate\Database\Eloquent\Model Update a comment's body.

Method Details

createComment() public méthode

Create a new comment.
public createComment ( $comment ) : Illuminate\Database\Eloquent\Model
$comment object item_id, user_id, body, username, email
Résultat Illuminate\Database\Eloquent\Model

deleteComment() public méthode

Delete a comment.
public deleteComment ( $id ) : boolean
$id int
Résultat boolean

getCommentById() public méthode

Get a comment by comment id.
public getCommentById ( $id ) : Illuminate\Database\Eloquent\Model
$id int
Résultat Illuminate\Database\Eloquent\Model

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