Skip to content

Commit 535ad35

Browse files
committed
update console app
1 parent 2af7da2 commit 535ad35

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/ConsoleApp.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,13 @@ public function run(): void
3030
$commandFactory = $this->commandFactory;
3131
array_reduce(
3232
$this->flowSteps,
33-
function($nextCommand, $item) use ($commandFactory) {
33+
function ($nextCommand, $item) use ($commandFactory) {
3434
$currentCommand = $commandFactory->createCommand($item);
3535
$nextCommand = $currentCommand->execute($nextCommand);
3636

3737
return $nextCommand;
3838
},
3939
$this->initCommand
4040
);
41-
4241
}
4342
}

0 commit comments

Comments
 (0)