chore: Move interfaces into Domain

Signed-off-by: Rubén D <nuxsmin@syspass.org>
This commit is contained in:
Rubén D
2023-11-26 13:09:47 +01:00
parent c0e876bd42
commit 05af371010
340 changed files with 1813 additions and 1421 deletions

View File

@@ -25,12 +25,14 @@
namespace SP\Modules\Web\Controllers\ConfigBackup;
use Exception;
use SP\Core\Acl\AclActionsInterface;
use SP\Core\Acl\UnauthorizedPageException;
use SP\Core\Application;
use SP\Core\Context\SessionContext;
use SP\Core\Events\Event;
use SP\Core\Events\EventMessage;
use SP\Core\Exceptions\SessionTimeout;
use SP\Core\Exceptions\SPException;
use SP\Domain\Core\Acl\AclActionsInterface;
use SP\Domain\Export\Ports\XmlExportServiceInterface;
use SP\Domain\Export\Ports\XmlVerifyServiceInterface;
use SP\Http\JsonResponse;
@@ -62,7 +64,7 @@ final class XmlExportController extends SimpleControllerBase
/**
* @return bool
* @throws \SP\Core\Exceptions\SPException
* @throws SPException
*/
public function xmlExportAction(): bool
{
@@ -131,8 +133,8 @@ final class XmlExportController extends SimpleControllerBase
/**
* initialize
*
* @throws \SP\Core\Exceptions\SPException
* @throws \SP\Core\Exceptions\SessionTimeout
* @throws SPException
* @throws SessionTimeout
*/
protected function initialize(): void
{