File "UserInterface.php"

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

<?php

namespace App\Repositories\User;

use App\Repositories\Base\BaseInterface;

interface UserInterface extends BaseInterface {
    public function getTrashedAdminData($email = null);
    public function guardian();
}