Change function name from updateJobOrder to openEditJobOrder. #377

This commit is contained in:
Korina Cordero 2020-04-15 03:49:31 +00:00
parent 4fd8292d2e
commit 5460b216aa
2 changed files with 2 additions and 2 deletions

View file

@ -98,7 +98,7 @@ class JobOrderController extends Controller
$this->denyAccessUnlessGranted('jo_open.edit', null, 'No access.');
$error_array = [];
$result = $jo_handler->updateJobOrder($req, $id);
$result = $jo_handler->openEditJobOrder($req, $id);
$error_array = $result['error_array'];

View file

@ -416,7 +416,7 @@ class ResqJobOrderHandler implements JobOrderHandlerInterface
}
// updates job order
public function updateJobOrder(Request $req, $id)
public function openEditJobOrder(Request $req, $id)
{
$em = $this->em;