Remove modifications. #640

This commit is contained in:
Korina Cordero 2021-11-23 03:02:03 +00:00
parent 680a12e52a
commit 3dd2bf5de4
2 changed files with 0 additions and 10 deletions

View file

@ -94,8 +94,3 @@ capi_rider_jo_start:
path: /rider_api/start path: /rider_api/start
controller: App\Controller\CAPI\RiderAppController::startJobOrder controller: App\Controller\CAPI\RiderAppController::startJobOrder
methods: [POST] methods: [POST]
capi_rider_hash_get:
path: /rider_api/customer_hash
controller: App\Controller\CAPI\RiderAppController::getCustomerHash
methods: [GET]

View file

@ -30,7 +30,6 @@ use App\Service\JobOrderHandlerInterface;
use App\Service\InvoiceGeneratorInterface; use App\Service\InvoiceGeneratorInterface;
use App\Service\RisingTideGateway; use App\Service\RisingTideGateway;
use App\Service\RiderTracker; use App\Service\RiderTracker;
use App\Service\HashGenerator;
use App\Ramcar\ServiceType; use App\Ramcar\ServiceType;
use App\Ramcar\TradeInType; use App\Ramcar\TradeInType;
@ -1226,10 +1225,6 @@ class RiderAppController extends APIController
return new APIResponse(true, 'Job order service changed.', $data); return new APIResponse(true, 'Job order service changed.', $data);
} }
public function getCustomerHash(Request $req, EntityManagerInterface $em, HashGenerator $hash)
{
}
protected function getCAPIUser($id, EntityManagerInterface $em) protected function getCAPIUser($id, EntityManagerInterface $em)
{ {
$capi_user = $em->getRepository(APIUser::class)->find($id); $capi_user = $em->getRepository(APIUser::class)->find($id);