File "DiaryRepository.php"
Full Path: /home/trinadezambia/public_html/admin_panel/app/Repositories/Diary/DiaryRepository.php
File size: 274 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Repositories\Diary;
use App\Models\Diary;
use App\Repositories\Base\BaseRepository;
class DiaryRepository extends BaseRepository implements DiaryInterface {
public function __construct(Diary $model) {
parent::__construct($model);
}
}