Skip to content

Commit

Permalink
Merge pull request #82 from wilsenhc/add-eol-to-json-files
Browse files Browse the repository at this point in the history
Add EOL to updated .json files
  • Loading branch information
kkomelin authored Mar 14, 2023
2 parents 6ce952c + ee2f3e1 commit 51e6575
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/Utils/IO.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

/**
Expand Down

0 comments on commit 51e6575

Please sign in to comment.