Skip to content

Commit 700487f

Browse files
AzGasimgithub-actions[bot]
authored andcommitted
Fix styling
1 parent 4f2cf78 commit 700487f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/prompts/src/Support/PromptFlowStateStore.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,15 @@ public function reset(string $flowId, ?string $commandName = null): void
5454

5555
// Reorder step_outputs to match the execution order (steps array order)
5656
$orderedStepOutputs = [];
57-
if ($state && !empty($steps)) {
57+
if ($state && ! empty($steps)) {
5858
foreach ($steps as $step) {
5959
if (isset($stepOutputs[$step])) {
6060
$orderedStepOutputs[$step] = $stepOutputs[$step];
6161
}
6262
}
6363
// Add any remaining steps that might not be in the steps array
6464
foreach ($stepOutputs as $step => $output) {
65-
if (!isset($orderedStepOutputs[$step])) {
65+
if (! isset($orderedStepOutputs[$step])) {
6666
$orderedStepOutputs[$step] = $output;
6767
}
6868
}

0 commit comments

Comments
 (0)