From 5b2b56546b1ddf295eac7d1bf309764d4963b4cc Mon Sep 17 00:00:00 2001 From: Kendrick Chan Date: Mon, 16 Dec 2019 20:25:55 +0800 Subject: [PATCH] Add default resq services and comment out cmb for easy swap #270 --- config/services.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/config/services.yaml b/config/services.yaml index c10838ec..353378b4 100644 --- a/config/services.yaml +++ b/config/services.yaml @@ -140,19 +140,22 @@ services: App\Service\InvoiceGenerator\CMBInvoiceGenerator: ~ # invoice generator interface - App\Service\InvoiceGeneratorInterface: "@App\\Service\\InvoiceGenerator\\CMBInvoiceGenerator" + #App\Service\InvoiceGeneratorInterface: "@App\\Service\\InvoiceGenerator\\CMBInvoiceGenerator" + App\Service\InvoiceGeneratorInterface: "@App\\Service\\InvoiceGenerator\\ResqInvoiceGenerator" # job order generator App\Service\JobOrderHandler\CMBJobOrderHandler: ~ #job order generator interface - App\Service\JobOrderHandlerInterface: "@App\\Service\\JobOrderHandler\\CMBJobOrderHandler" + #App\Service\JobOrderHandlerInterface: "@App\\Service\\JobOrderHandler\\CMBJobOrderHandler" + App\Service\JobOrderHandlerInterface: "@App\\Service\\JobOrderHandler\\ResqJobOrderHandler" # customer generator App\Service\CustomerHandler\CMBCustomerHandler: ~ # customer generator interface - App\Service\CustomerHandlerInterface: "@App\\Service\\CustomerHandler\\CMBCustomerHandler" + #App\Service\CustomerHandlerInterface: "@App\\Service\\CustomerHandler\\CMBCustomerHandler" + App\Service\CustomerHandlerInterface: "@App\\Service\\CustomerHandler\\ResqCustomerHandler" # rider assignment App\Service\RiderAssignmentHandler\CMBRiderAssignmentHandler: ~