diff --git a/src/Core/Utils/IO.php b/src/Core/Utils/IO.php index bf2149c..ffe3c12 100644 --- a/src/Core/Utils/IO.php +++ b/src/Core/Utils/IO.php @@ -18,7 +18,7 @@ class IO */ public static function write(string $content, string $path) { - file_put_contents($path, $content); + file_put_contents($path, $content . PHP_EOL); } /**