From 1c6a257407768a89076fe78e50a7d2bb7e516e84 Mon Sep 17 00:00:00 2001 From: brendt Date: Fri, 5 Apr 2024 09:32:42 +0000 Subject: [PATCH] Fixes styling. --- src/Actions/RenderConsoleCommand.php | 4 +++- src/ConsoleOutputType.php | 6 ++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/src/Actions/RenderConsoleCommand.php b/src/Actions/RenderConsoleCommand.php index 1603b37..282f3d0 100644 --- a/src/Actions/RenderConsoleCommand.php +++ b/src/Actions/RenderConsoleCommand.php @@ -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 { diff --git a/src/ConsoleOutputType.php b/src/ConsoleOutputType.php index d0a0560..04df9db 100644 --- a/src/ConsoleOutputType.php +++ b/src/ConsoleOutputType.php @@ -1,5 +1,7 @@ "* {$line}", explode(PHP_EOL, $input), ), - '*/' + '*/', ], ); } -} \ No newline at end of file +}