@@ -80,7 +80,7 @@ |
||
80 | 80 | |
81 | 81 | foreach ($actions as $action) { |
82 | 82 | $this->execute( |
83 | - function () use ($workflowContext, $action) { |
|
83 | + function() use ($workflowContext, $action) { |
|
84 | 84 | $this->actionExecutor->execute($workflowContext, $action->getName(), $action->getArguments()); |
85 | 85 | }, |
86 | 86 | $eventName, |
@@ -81,7 +81,7 @@ |
||
81 | 81 | |
82 | 82 | foreach ($actions as $scheduledAction) { |
83 | 83 | $this->execute( |
84 | - function () use ($workflowContext, $scheduledAction) { |
|
84 | + function() use ($workflowContext, $scheduledAction) { |
|
85 | 85 | $this->actionScheduler->scheduleAction($workflowContext, $scheduledAction); |
86 | 86 | }, |
87 | 87 | $eventName, |
@@ -73,7 +73,7 @@ |
||
73 | 73 | $expression = $this->supportedEventsConfig[$eventName][$workflowContext->getWorkflow()->getName()]['expression']; |
74 | 74 | |
75 | 75 | $this->execute( |
76 | - function () use ($expression, $event, $workflowContext) { |
|
76 | + function() use ($expression, $event, $workflowContext) { |
|
77 | 77 | $this->actionLanguage->evaluate($expression, ['event' => $event, 'workflowContext' => $workflowContext]); |
78 | 78 | }, |
79 | 79 | $eventName, |