Change function name from updateJobOrder to openEditJobOrder. #377
This commit is contained in:
parent
4fd8292d2e
commit
5460b216aa
2 changed files with 2 additions and 2 deletions
|
|
@ -98,7 +98,7 @@ class JobOrderController extends Controller
|
||||||
$this->denyAccessUnlessGranted('jo_open.edit', null, 'No access.');
|
$this->denyAccessUnlessGranted('jo_open.edit', null, 'No access.');
|
||||||
|
|
||||||
$error_array = [];
|
$error_array = [];
|
||||||
$result = $jo_handler->updateJobOrder($req, $id);
|
$result = $jo_handler->openEditJobOrder($req, $id);
|
||||||
|
|
||||||
$error_array = $result['error_array'];
|
$error_array = $result['error_array'];
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -416,7 +416,7 @@ class ResqJobOrderHandler implements JobOrderHandlerInterface
|
||||||
}
|
}
|
||||||
|
|
||||||
// updates job order
|
// updates job order
|
||||||
public function updateJobOrder(Request $req, $id)
|
public function openEditJobOrder(Request $req, $id)
|
||||||
{
|
{
|
||||||
$em = $this->em;
|
$em = $this->em;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue