changes
This commit is contained in:
15
Modules/Setting/app/Repositories/SettingInterface.php
Normal file
15
Modules/Setting/app/Repositories/SettingInterface.php
Normal file
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\Setting\Repositories;
|
||||
|
||||
interface SettingInterface
|
||||
{
|
||||
public function findAll();
|
||||
public function getSettingById($SettingId);
|
||||
public function getSettingByEmail($email);
|
||||
public function delete($SettingId);
|
||||
public function create($SettingDetails);
|
||||
public function update($SettingId, array $newDetails);
|
||||
public function pluck();
|
||||
|
||||
}
|
Reference in New Issue
Block a user