mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-07 00:46:59 +01:00
refactor: [WIP] Use hexagonal architecture and implement interfaces for services and repositories.
Controllers are being splited into commands to better dependency management. Signed-off-by: Rubén D <nuxsmin@syspass.org>
This commit is contained in:
@@ -26,7 +26,7 @@ namespace SP\Mvc\Controller;
|
||||
|
||||
|
||||
use SP\Core\Events\EventDispatcherInterface;
|
||||
use SP\Mvc\View\Template;
|
||||
use SP\Mvc\View\TemplateInterface;
|
||||
|
||||
/**
|
||||
* Interface ExtensibleController
|
||||
@@ -36,9 +36,9 @@ use SP\Mvc\View\Template;
|
||||
interface ExtensibleControllerInterface
|
||||
{
|
||||
/**
|
||||
* @return Template
|
||||
* @return TemplateInterface
|
||||
*/
|
||||
public function getView(): Template;
|
||||
public function getView(): TemplateInterface;
|
||||
|
||||
/**
|
||||
* @return void
|
||||
|
||||
Reference in New Issue
Block a user