File "AssignmentRepository.php"

Full Path: /home/trinadezambia/public_html/demo-school-management.trinadezambia.com/PHP_Code/app/Repositories/Assignment/AssignmentRepository.php
File size: 298 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Repositories\Assignment;

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

class AssignmentRepository extends SaaSRepository implements AssignmentInterface {
    public function __construct(Assignment $model) {
        parent::__construct($model);
    }
}