File "SystemSettingInterface.php"

Full Path: /home/trinadezambia/public_html/admin_panel/app/Repositories/SystemSetting/SystemSettingInterface.php
File size: 237 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Repositories\SystemSetting;

use App\Repositories\Base\BaseInterface;

interface SystemSettingInterface extends BaseInterface {
    public function getSpecificData($name);
    public function getBulkData($array);

}