This commit is contained in:
tanch0
2024-06-18 11:31:51 +05:45
parent fcbaa0f679
commit 613dfd1834
116 changed files with 4829 additions and 1558 deletions

View File

@ -0,0 +1,9 @@
<?php
namespace App\Repositories\Interface;
interface SettingInterface
{
public function create(array $settingDetails);
public function update($settingId, array $newDetails);
}