Fix syntax bugs #424
This commit is contained in:
parent
b618605849
commit
ef7e362c7d
2 changed files with 2 additions and 2 deletions
|
|
@ -804,7 +804,7 @@ class JobOrder
|
|||
|
||||
public function perform()
|
||||
{
|
||||
$this->setStatus(JOStatus::PERFORM)
|
||||
$this->setStatus(JOStatus::PERFORM);
|
||||
}
|
||||
|
||||
public function fulfill()
|
||||
|
|
|
|||
|
|
@ -814,7 +814,7 @@ class CMBRiderAPIHandler implements RiderAPIHandlerInterface
|
|||
return $data;
|
||||
}
|
||||
|
||||
$jo->perform()
|
||||
$jo->perform();
|
||||
|
||||
// TODO: make event for this?
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue