Skip to content

Commit 61cb436

Browse files
authored
Fix variable to camelCase to match codebase
1 parent 3f08a79 commit 61cb436

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Commands/WorkflowDumpCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public function handle()
7171
' Please specify a valid support class with the --class option.');
7272
}
7373

74-
$dumper_options = [
74+
$dumperOptions = [
7575
'with-metadata' => $withMetadata,
7676
];
7777

@@ -89,7 +89,7 @@ public function handle()
8989

9090
$process = new Process($dotCommand);
9191
$process->setWorkingDirectory($path);
92-
$process->setInput($dumper->dump($definition, options: $dumper_options));
92+
$process->setInput($dumper->dump($definition, options: $dumperOptions));
9393
$process->mustRun();
9494
}
9595
}

0 commit comments

Comments
 (0)