From 153398772724d7cc870d0e351ffa2e11c81d10cb Mon Sep 17 00:00:00 2001 From: Korina Cordero Date: Thu, 14 Nov 2019 05:56:45 +0000 Subject: [PATCH] Add a TODO for the JobHandlerInterface. #270 --- src/Service/JobOrderHandler/CMBJobOrderHandler.php | 2 -- src/Service/JobOrderHandlerInterface.php | 3 +++ 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Service/JobOrderHandler/CMBJobOrderHandler.php b/src/Service/JobOrderHandler/CMBJobOrderHandler.php index d6ef2bd0..ce0f31fc 100644 --- a/src/Service/JobOrderHandler/CMBJobOrderHandler.php +++ b/src/Service/JobOrderHandler/CMBJobOrderHandler.php @@ -611,8 +611,6 @@ class CMBJobOrderHandler implements JobOrderHandlerInterface } // fulfill job order - // TODO: event sending has been moved to rider assignment handler for cmb. Might need - // to consider resq implementation for event sending for the other methods. public function fulfillJobOrder(Request $req, $id, MQTTClient $mclient) { // initialize error list diff --git a/src/Service/JobOrderHandlerInterface.php b/src/Service/JobOrderHandlerInterface.php index 9ae50a7b..598b07cb 100644 --- a/src/Service/JobOrderHandlerInterface.php +++ b/src/Service/JobOrderHandlerInterface.php @@ -10,6 +10,9 @@ use App\Service\MapTools; interface JobOrderHandlerInterface { + // TODO: event sending has been moved to rider assignment handler for cmb. Might need + // to consider resq implementation for event sending for the other methods. + // get job order rows public function getRows(Request $req, string $tier);