master_template/app/Repositories/Interface/SettingInterface.php

9 lines
186 B
PHP
Raw Normal View History

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