-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sashagm
committed
Nov 11, 2023
1 parent
b5bbe10
commit 8f264d2
Showing
4 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?php | ||
|
||
namespace Sashagm\Themes\Interface; | ||
|
||
interface ActiveThemeInterface | ||
{ | ||
public function getTitle(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
|
||
namespace Sashagm\Themes\Interface; | ||
|
||
use Illuminate\Http\Request; | ||
|
||
interface ThemeInterface | ||
{ | ||
public function index(Request $request); | ||
|
||
public function store(Request $request); | ||
|
||
public function show($id); | ||
|
||
public function update(Request $request, $id); | ||
|
||
public function destroy($id); | ||
} |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
use Exception; | ||
|
||
|
||
class ThemesService | ||
class ThemesService | ||
{ | ||
|
||
const THEME_ONE = Themes; | ||
|