File "AssignmentCommonRepository.php"

Full Path: /home/trinadezambia/public_html/admin_panel/app/Repositories/AssignmentCommon/AssignmentCommonRepository.php
File size: 328 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Repositories\AssignmentCommon;

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

class AssignmentCommonRepository extends SaaSRepository implements AssignmentCommonInterface {
    public function __construct(AssignmentCommon $model) {
        parent::__construct($model);
    }
}