From ee2f3e1e38f070886927d0ce7928463dde82d0c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wilsen=20Hern=C3=A1ndez?= <13445515+wilsenhc@users.noreply.github.com> Date: Mon, 13 Mar 2023 11:52:53 -0400 Subject: [PATCH] Add EOL to updated json files --- src/Core/Utils/IO.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } /**