Fix return value for verifyJobOrder. #424
This commit is contained in:
parent
db4ab726ab
commit
0f0169cff4
1 changed files with 2 additions and 2 deletions
|
|
@ -2092,8 +2092,8 @@ class CMBRiderAPIHandler implements RiderAPIHandlerInterface
|
||||||
($jo->getStatus() == JOStatus::CANCELLED))
|
($jo->getStatus() == JOStatus::CANCELLED))
|
||||||
{
|
{
|
||||||
$data = [
|
$data = [
|
||||||
'assigned' => 'true',
|
'assigned' => true,
|
||||||
'available' => 'false'
|
'available' => false
|
||||||
];
|
];
|
||||||
return $data;
|
return $data;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue