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 +}