File "TopicsRepository.php"
Full Path: /home/trinadezambia/public_html/admin_panel/app/Repositories/SubscriptionFeature/TopicsRepository.php
File size: 288 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Repositories\Topics;
use App\Models\LessonTopic;
use App\Repositories\Saas\SaaSRepository;
class TopicsRepository extends SaaSRepository implements TopicsInterface {
public function __construct(LessonTopic $model) {
parent::__construct($model);
}
}