We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f08a79 commit 61cb436Copy full SHA for 61cb436
src/Commands/WorkflowDumpCommand.php
@@ -71,7 +71,7 @@ public function handle()
71
' Please specify a valid support class with the --class option.');
72
}
73
74
- $dumper_options = [
+ $dumperOptions = [
75
'with-metadata' => $withMetadata,
76
];
77
@@ -89,7 +89,7 @@ public function handle()
89
90
$process = new Process($dotCommand);
91
$process->setWorkingDirectory($path);
92
- $process->setInput($dumper->dump($definition, options: $dumper_options));
+ $process->setInput($dumper->dump($definition, options: $dumperOptions));
93
$process->mustRun();
94
95
0 commit comments