diff --git a/app/modules/api/Controllers/Account/AccountBase.php b/app/modules/api/Controllers/Account/AccountBase.php index 5d4898b4..b6b80573 100644 --- a/app/modules/api/Controllers/Account/AccountBase.php +++ b/app/modules/api/Controllers/Account/AccountBase.php @@ -27,7 +27,7 @@ namespace SP\Modules\Api\Controllers\Account; use Klein\Klein; use SP\Core\Application; -use SP\Domain\Account\Adapters\AccountAdapterInterface; +use SP\Domain\Account\Ports\AccountAdapter; use SP\Domain\Account\Ports\AccountPresetService; use SP\Domain\Account\Ports\AccountService; use SP\Domain\Api\Ports\ApiService; @@ -45,7 +45,7 @@ abstract class AccountBase extends ControllerBase protected AccountPresetService $accountPresetService; protected AccountService $accountService; protected CustomFieldDataService $customFieldService; - protected AccountAdapterInterface $accountAdapter; + protected AccountAdapter $accountAdapter; /** * @throws InvalidClassException @@ -58,7 +58,7 @@ abstract class AccountBase extends ControllerBase AccountPresetService $accountPresetService, AccountService $accountService, CustomFieldDataService $customFieldService, - AccountAdapterInterface $accountAdapter + AccountAdapter $accountAdapter ) { parent::__construct($application, $router, $apiService, $acl); diff --git a/app/modules/api/Controllers/Client/ClientBase.php b/app/modules/api/Controllers/Client/ClientBase.php index 7e107889..09405424 100644 --- a/app/modules/api/Controllers/Client/ClientBase.php +++ b/app/modules/api/Controllers/Client/ClientBase.php @@ -28,7 +28,7 @@ namespace SP\Modules\Api\Controllers\Client; use Klein\Klein; use SP\Core\Application; use SP\Domain\Api\Ports\ApiService; -use SP\Domain\Client\Ports\ClientAdapterInterface; +use SP\Domain\Client\Ports\ClientAdapter; use SP\Domain\Client\Ports\ClientService; use SP\Domain\Core\Acl\AclInterface; use SP\Domain\Core\Exceptions\InvalidClassException; @@ -41,7 +41,7 @@ use SP\Modules\Api\Controllers\Help\ClientHelp; abstract class ClientBase extends ControllerBase { protected ClientService $clientService; - protected ClientAdapterInterface $clientAdapter; + protected ClientAdapter $clientAdapter; /** * @throws InvalidClassException @@ -52,7 +52,7 @@ abstract class ClientBase extends ControllerBase ApiService $apiService, AclInterface $acl, ClientService $clientService, - ClientAdapterInterface $clientAdapter + ClientAdapter $clientAdapter ) { parent::__construct($application, $router, $apiService, $acl); diff --git a/app/modules/web/themes/material-blue/views/config/info.inc b/app/modules/web/themes/material-blue/views/config/info.inc index 4baf8cf9..c9213250 100644 --- a/app/modules/web/themes/material-blue/views/config/info.inc +++ b/app/modules/web/themes/material-blue/views/config/info.inc @@ -4,7 +4,7 @@ * * @author nuxsmin * @link https://syspass.org - * @copyright 2012-2023, Rubén Domínguez nuxsmin@$syspass.org + * @copyright 2012-2024, Rubén Domínguez nuxsmin@$syspass.org * * This file is part of sysPass. * @@ -37,7 +37,7 @@ use SP\Domain\Config\Ports\ConfigDataInterface; use SP\Domain\Core\UI\ThemeIconsInterface; use SP\Domain\Install\Services\InstallerService; - use SP\Domain\Plugin\Ports\PluginInterface; + use SP\Domain\Plugin\Ports\Plugin; use SP\Mvc\View\TemplateInterface; use SP\Util\VersionUtil; @@ -246,7 +246,7 @@