%PDF- %PDF-
Direktori : /var/www/html/news/app/Repositories/Comment/ |
Current File : /var/www/html/news/app/Repositories/Comment/CommentsEloquentRepository.php |
<?php namespace App\Repositories\Comment; use App\Models\Comment; use App\Repositories\Base\BaseEloquentRepository; use Illuminate\Container\Container; use Illuminate\Support\Collection; class CommentsEloquentRepository extends BaseEloquentRepository implements CommentsRepository { /** * CommentsEloquentRepository constructor. * @param Container $container * @param Collection $collection */ public function __construct(Container $container, Collection $collection) { parent::__construct($container, $collection); } public function model() { return Comment::class; } }