Skip to content

Commit a6e554c

Browse files
committed
format code
1 parent e00d3c8 commit a6e554c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Commands/UserCommands/HelpCommand.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,14 @@ public function execute()
6969
);
7070

7171
foreach ($command_objs as $command) {
72-
if($command->showInHelp()) {
72+
if ($command->showInHelp()) {
7373
continue;
7474
}
7575

7676
$text .= sprintf(
77-
'/%s - %s' . PHP_EOL,
78-
$command->getName(),
79-
$command->getDescription()
77+
'/%s - %s' . PHP_EOL,
78+
$command->getName(),
79+
$command->getDescription()
8080
);
8181

8282
}

0 commit comments

Comments
 (0)