Skip to content

Commit aa1741d

Browse files
committed
[rector] Rector fixes
1 parent 3c487a0 commit aa1741d

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/Mapping/Field/ExpressionLanguageValueMapper.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,7 @@ public function __invoke($input, $output, PropertyPathInterface $outputPath)
3535
$this->accessor->setValue(
3636
$output,
3737
$outputPath,
38-
$this->interpreter->evaluate($this->expression, array_merge($this->variables, [
39-
'input' => $input,
40-
'output' => $output,
41-
]))
38+
$this->interpreter->evaluate($this->expression, [...$this->variables, 'input' => $input, 'output' => $output])
4239
);
4340

4441
return $output;

0 commit comments

Comments
 (0)