PHP Интерфейс Owl\Repositories\CommentRepositoryInterface

Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Описание методов

createComment() публичный Метод

Create a new comment.
public createComment ( $comment ) : Illuminate\Database\Eloquent\Model
$comment object item_id, user_id, body, username, email
Результат Illuminate\Database\Eloquent\Model

deleteComment() публичный Метод

Delete a comment.
public deleteComment ( $id ) : boolean
$id int
Результат boolean

getCommentById() публичный Метод

Get a comment by comment id.
public getCommentById ( $id ) : Illuminate\Database\Eloquent\Model
$id int
Результат Illuminate\Database\Eloquent\Model

updateComment() публичный Метод

Update a comment's body.
public updateComment ( $id, $body ) : Illuminate\Database\Eloquent\Model
$id int
$body string
Результат Illuminate\Database\Eloquent\Model