File "LessonsCommonRepository.php"
Full Path: /home/trinadezambia/public_html/demo-school-management.trinadezambia.com/PHP_Code/app/Repositories/LessonsCommon/LessonsCommonRepository.php
File size: 311 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Repositories\LessonsCommon;
use App\Models\LessonCommon;
use App\Repositories\Saas\SaaSRepository;
class LessonsCommonRepository extends SaaSRepository implements LessonsCommonInterface {
public function __construct(LessonCommon $model) {
parent::__construct($model);
}
}