Owl\Services\CommentService::getCommentById PHP Метод

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

Get a comment by comment id.
public getCommentById ( $id ) : Illuminate\Database\Eloquent\Model
$id int
Результат Illuminate\Database\Eloquent\Model
    public function getCommentById($id)
    {
        return $this->commentRepo->getCommentById($id);
    }