Skip to content

Commit

Permalink
Include newLine at the end of script block
Browse files Browse the repository at this point in the history
  • Loading branch information
juniwalk authored Apr 24, 2024
1 parent 7814291 commit 1444f37
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/TessaRenderer.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}


Expand All @@ -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;
}


Expand Down Expand Up @@ -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;
}


Expand Down

0 comments on commit 1444f37

Please sign in to comment.