php cs fixer

This commit is contained in:
Yisroel Baum 2026-04-19 23:07:48 +03:00
parent 26abaeb739
commit 189493b045
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
17 changed files with 44 additions and 43 deletions

View file

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