master_template/app/Repositories/Interface/SettingInterface.php

9 lines
186 B
PHP
Raw Normal View History

2024-06-18 11:31:51 +05:45
<?php
namespace App\Repositories\Interface;
interface SettingInterface
{
public function create(array $settingDetails);
public function update($settingId, array $newDetails);
}