File "PromoteStudentRepository.php"

Full Path: /home/trinadezambia/public_html/admin_panel/app/Repositories/PromoteStudent/PromoteStudentRepository.php
File size: 318 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Repositories\PromoteStudent;

use App\Models\PromoteStudent;
use App\Repositories\Saas\SaaSRepository;

class PromoteStudentRepository extends SaaSRepository implements PromoteStudentInterface {
    public function __construct(PromoteStudent $model) {
        parent::__construct($model);
    }
}