PHP Класс Owl\Services\CommentService

Наследование: extends Service
Показать файл Открыть проект

Защищенные свойства (Protected)

Свойство Тип Описание
$commentRepo

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

Метод Описание
__construct ( Owl\Repositories\CommentRepositoryInterface $commentRepo )
createComment ( $cmt ) : 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.

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

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

public __construct ( Owl\Repositories\CommentRepositoryInterface $commentRepo )
$commentRepo Owl\Repositories\CommentRepositoryInterface

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

Create a new comment.
public createComment ( $cmt ) : Illuminate\Database\Eloquent\Model
Результат 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

Описание свойств

$commentRepo защищенное свойство

protected $commentRepo