vrfcReqModel 수정

This commit is contained in:
2026-01-23 18:29:30 +09:00
parent 0d1c6855e5
commit 7c48d1134f

View File

@@ -27,6 +27,7 @@ class NaverService
public function __construct() public function __construct()
{ {
try {
$this->db = \Config\Database::connect(); $this->db = \Config\Database::connect();
$this->VrfcReqModel = new VrfcReqModel(); $this->VrfcReqModel = new VrfcReqModel();
@@ -39,6 +40,9 @@ class NaverService
$this->statusService = new StatusService(); $this->statusService = new StatusService();
helper('log'); helper('log');
} catch (\Throwable $e) {
CLI::error("Service Init Error: " . $e->getMessage());
}
} }
/** /**