From da2bab733833f55785a315ecb5fd4583815679b6 Mon Sep 17 00:00:00 2001 From: User Date: Sat, 13 Apr 2024 04:18:46 +0300 Subject: [PATCH] 20240413#4 --- {src/Common => application}/Components/.gitkeep | 0 .../Controllers/AbstractController.php | 2 +- .../Controllers/AbstractPageController.php | 8 ++++---- .../Controllers/NotFoundException.php | 2 +- {src/Common => application}/Domain/AbstractObject.php | 2 +- .../Repository/AbstractMysqlRepository.php | 4 ++-- .../Repository/RepositoryException.php | 2 +- {src/Common => application}/Services/AbstractDTO.php | 2 +- {src/Common => application}/Services/AbstractService.php | 2 +- {src/Common => application}/Services/DTOException.php | 2 +- {src/Common => application}/Services/ServiceException.php | 2 +- composer.json | 1 + src/Main/Components/.gitkeep | 0 src/Main/Controllers/IndexController.php | 2 +- 14 files changed, 16 insertions(+), 15 deletions(-) rename {src/Common => application}/Components/.gitkeep (100%) rename {src/Common => application}/Controllers/AbstractController.php (99%) rename {src/Common => application}/Controllers/AbstractPageController.php (86%) rename {src/Common => application}/Controllers/NotFoundException.php (61%) rename {src/Common => application}/Domain/AbstractObject.php (98%) rename {src/Common => application}/Repository/AbstractMysqlRepository.php (91%) rename {src/Common => application}/Repository/RepositoryException.php (89%) rename {src/Common => application}/Services/AbstractDTO.php (98%) rename {src/Common => application}/Services/AbstractService.php (72%) rename {src/Common => application}/Services/DTOException.php (89%) rename {src/Common => application}/Services/ServiceException.php (89%) create mode 100644 src/Main/Components/.gitkeep diff --git a/src/Common/Components/.gitkeep b/application/Components/.gitkeep similarity index 100% rename from src/Common/Components/.gitkeep rename to application/Components/.gitkeep diff --git a/src/Common/Controllers/AbstractController.php b/application/Controllers/AbstractController.php similarity index 99% rename from src/Common/Controllers/AbstractController.php rename to application/Controllers/AbstractController.php index 21e6499..3f739ff 100644 --- a/src/Common/Controllers/AbstractController.php +++ b/application/Controllers/AbstractController.php @@ -1,6 +1,6 @@