add line break to echo of file name

This commit is contained in:
Yisroel Baum 2026-04-20 09:41:14 +03:00
parent 0d44d2c090
commit 760f995fa0
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9

View file

@ -6,7 +6,7 @@ $files = [
];
foreach ($files as $file) {
echo __DIR__ . "/$file";
echo __DIR__ . "/$file\n";
$path = __DIR__ . "/$file";
file_put_contents($path, json_encode([], JSON_PRETTY_PRINT));
}