9 lines
186 B
PHP
9 lines
186 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Repositories\Interface;
|
||
|
|
||
|
interface SettingInterface
|
||
|
{
|
||
|
public function create(array $settingDetails);
|
||
|
public function update($settingId, array $newDetails);
|
||
|
}
|