From 67569faee34e9d0ec1e02684020a91199b2cee1f Mon Sep 17 00:00:00 2001 From: "choi.jh" Date: Thu, 30 Oct 2025 17:54:08 +0900 Subject: [PATCH] dbmsv3 init...1 --- app/Processors/CommonProcessor.php | 2 +- app/Processors/Customer/{ => Service}/ServiceComposite.php | 0 app/Processors/Customer/{ => Service}/ServiceContext.php | 0 app/Processors/Customer/{ => Service}/ServiceInterface.php | 0 app/Processors/Customer/{ => Service}/ServiceV2Processor.php | 0 5 files changed, 1 insertion(+), 1 deletion(-) rename app/Processors/Customer/{ => Service}/ServiceComposite.php (100%) rename app/Processors/Customer/{ => Service}/ServiceContext.php (100%) rename app/Processors/Customer/{ => Service}/ServiceInterface.php (100%) rename app/Processors/Customer/{ => Service}/ServiceV2Processor.php (100%) diff --git a/app/Processors/CommonProcessor.php b/app/Processors/CommonProcessor.php index 48c1728..e416771 100644 --- a/app/Processors/CommonProcessor.php +++ b/app/Processors/CommonProcessor.php @@ -17,7 +17,7 @@ abstract class CommonProcessor final protected function setLog(string $title, string $status, ?string $context = null): void { - $this->logService->create([ + $this->logService->getModel()->create([ 'title' => $title, 'status' => $status, 'context' => $context diff --git a/app/Processors/Customer/ServiceComposite.php b/app/Processors/Customer/Service/ServiceComposite.php similarity index 100% rename from app/Processors/Customer/ServiceComposite.php rename to app/Processors/Customer/Service/ServiceComposite.php diff --git a/app/Processors/Customer/ServiceContext.php b/app/Processors/Customer/Service/ServiceContext.php similarity index 100% rename from app/Processors/Customer/ServiceContext.php rename to app/Processors/Customer/Service/ServiceContext.php diff --git a/app/Processors/Customer/ServiceInterface.php b/app/Processors/Customer/Service/ServiceInterface.php similarity index 100% rename from app/Processors/Customer/ServiceInterface.php rename to app/Processors/Customer/Service/ServiceInterface.php diff --git a/app/Processors/Customer/ServiceV2Processor.php b/app/Processors/Customer/Service/ServiceV2Processor.php similarity index 100% rename from app/Processors/Customer/ServiceV2Processor.php rename to app/Processors/Customer/Service/ServiceV2Processor.php