Skip to content
Snippets Groups Projects
Commit 4df5e5e5 authored by Damian Skiba's avatar Damian Skiba Committed by Mariusz Andrzejewski
Browse files

Issue #3374308: Fix method name

parent d259eec6
No related branches found
No related tags found
1 merge request!5Issue #3374308: Fix method name
......@@ -173,7 +173,7 @@ class BaseLinkerController extends ControllerBase implements BaseLinkerControlle
public function performOperation($action) {
switch ($action) {
case 'OrdersGet':
$response = $this->ordersService->ordersGet($this->params);
$response = $this->ordersService->getOrders($this->params);
break;
case 'OrderUpdate':
......
......@@ -91,7 +91,7 @@ class OrdersService {
* @return array
* Array of orders.
*/
public function ordersGet(array $params) {
public function getOrders(array $params) {
try {
$query = $this->entityTypeManager->getStorage('commerce_order')
->getQuery();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment