Skip to content

Commit

Permalink
Using all instead of get because of the array type
Browse files Browse the repository at this point in the history
  • Loading branch information
mcop1 committed Sep 4, 2024
1 parent 633ea39 commit b987a55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Controller/WebserviceController.php
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ public function webonyxAction(
$this->eventDispatcher->dispatch($event, ExecutorEvents::PRE_EXECUTE);

if ($event->getRequest() instanceof Request) {
$variableValues = $event->getRequest()->request->get('variables');
$variableValues = $event->getRequest()->request->all('variables');
}

if (!$variableValues) {
Expand Down

0 comments on commit b987a55

Please sign in to comment.