From 1444f37e096a11457a1d96f44543ffeb76a9ae84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Proch=C3=A1zka?= Date: Wed, 24 Apr 2024 17:36:55 +0200 Subject: [PATCH] Include newLine at the end of script block --- src/TessaRenderer.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/TessaRenderer.php b/src/TessaRenderer.php index cc8be78..021ca4c 100644 --- a/src/TessaRenderer.php +++ b/src/TessaRenderer.php @@ -50,7 +50,7 @@ public function renderCss(?string $bundle = null): void return; } - echo implode(PHP_EOL, $this->compile($bundle, $type)); + echo implode(PHP_EOL, $this->compile($bundle, $type)).PHP_EOL; } @@ -63,7 +63,7 @@ public function renderJs(?string $bundle = null): void return; } - echo implode(PHP_EOL, $this->compile($bundle, $type)); + echo implode(PHP_EOL, $this->compile($bundle, $type)).PHP_EOL; } @@ -96,7 +96,7 @@ public function render(Type|string $type): void $output = array_merge($output, $bundle); } - echo implode(PHP_EOL, $output); + echo implode(PHP_EOL, $output).PHP_EOL; }