This commit is contained in:
Yurii
2026-04-17 11:22:29 +03:00
parent daf052833d
commit 485c6d1eb7
4 changed files with 0 additions and 10 deletions

View File

@@ -26,9 +26,6 @@
"number": {
"loaderClassName": "Espo\\Core\\Loaders\\NumberUtil"
},
"selectManagerFactory": {
"className": "Espo\\Core\\Select\\SelectManagerFactory"
},
"serviceFactory": {
"className": "Espo\\Core\\ServiceFactory"
},

View File

@@ -589,10 +589,6 @@ class EntityManager
$this->fileManager->removeFile("custom/Espo/Custom/Controllers/$normalizedName.php");
$this->fileManager->removeFile("custom/Espo/Custom/Repositories/$normalizedName.php");
if (file_exists("custom/Espo/Custom/SelectManagers/$normalizedName.php")) {
$this->fileManager->removeFile("custom/Espo/Custom/SelectManagers/$normalizedName.php");
}
$this->fileManager->removeInDir("custom/Espo/Custom/Resources/layouts/$normalizedName");
$this->fileManager->removeDir("custom/Espo/Custom/Resources/layouts/$normalizedName");

View File

@@ -37,7 +37,5 @@ class ClassType
public const REPOSITORY = 'Repositories';
public const SELECT_MANAGER = 'SelectManagers';
public const SERVICE = 'Services';
}

View File

@@ -57,7 +57,6 @@ class Renamer
ClassType::ENTITY,
ClassType::CONTROLLER,
ClassType::REPOSITORY,
ClassType::SELECT_MANAGER,
ClassType::SERVICE,
];