Fix return value for verifyJobOrder. #424

This commit is contained in:
Korina Cordero 2020-06-22 04:32:58 +00:00
parent db4ab726ab
commit 0f0169cff4

View file

@ -2092,8 +2092,8 @@ class CMBRiderAPIHandler implements RiderAPIHandlerInterface
($jo->getStatus() == JOStatus::CANCELLED))
{
$data = [
'assigned' => 'true',
'available' => 'false'
'assigned' => true,
'available' => false
];
return $data;
}