Skip to content

Commit

Permalink
Подготовка в новой версии
Browse files Browse the repository at this point in the history
  • Loading branch information
Sashagm committed Nov 11, 2023
1 parent b5bbe10 commit 8f264d2
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 1 deletion.
8 changes: 8 additions & 0 deletions src/Interface/ActiveThemeInterface.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?php

namespace Sashagm\Themes\Interface;

interface ActiveThemeInterface
{
public function getTitle();
}
18 changes: 18 additions & 0 deletions src/Interface/ThemeInterface.php
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 added src/Services/ActiveTheme.php
Empty file.
2 changes: 1 addition & 1 deletion src/Services/ThemesService.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Exception;


class ThemesService
class ThemesService
{

const THEME_ONE = Themes;
Expand Down

0 comments on commit 8f264d2

Please sign in to comment.