16 lines
385 B
PHP
16 lines
385 B
PHP
<?php
|
|
|
|
namespace Modules\Admin\Repositories;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
interface SettingInterface
|
|
{
|
|
public function findAll();
|
|
public function getSettingById($SettingId);
|
|
public function getList();
|
|
public function delete($SettingId);
|
|
public function create(array $SettingDetails, Request $request);
|
|
public function update($SettingId, array $newDetails);
|
|
}
|