Skip to content

Commit

Permalink
Fixes styling.
Browse files Browse the repository at this point in the history
  • Loading branch information
brendt authored and github-actions[bot] committed Apr 5, 2024
1 parent 0f06e64 commit 1c6a257
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion src/Actions/RenderConsoleCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@

final readonly class RenderConsoleCommand
{
public function __construct(private ConsoleOutput $output) {}
public function __construct(private ConsoleOutput $output)
{
}

public function __invoke(ConsoleCommand $consoleCommand): void
{
Expand Down
6 changes: 4 additions & 2 deletions src/ConsoleOutputType.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Tempest\Console;

enum ConsoleOutputType
Expand Down Expand Up @@ -45,8 +47,8 @@ private function comment(string $input): string
fn (string $line) => "* {$line}",
explode(PHP_EOL, $input),
),
'*/'
'*/',
],
);
}
}
}

0 comments on commit 1c6a257

Please sign in to comment.