From ecc4b88b2c331951312962fefe1256699af2adce Mon Sep 17 00:00:00 2001 From: brendt Date: Sun, 26 May 2024 06:36:21 +0200 Subject: [PATCH] Debug formatting --- src/Support/VarExport/Debug.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Support/VarExport/Debug.php b/src/Support/VarExport/Debug.php index 1320c76..f52dbfe 100644 --- a/src/Support/VarExport/Debug.php +++ b/src/Support/VarExport/Debug.php @@ -58,10 +58,10 @@ private function writeToLog(array $items, string $callPath): void $dumper->dump($cloner->cloneVar($item)); - fwrite($handle, "[{$key}]" . PHP_EOL . $output . PHP_EOL); + fwrite($handle, "[{$key}] " . $output . PHP_EOL); } - fwrite($handle, $callPath . PHP_EOL); + fwrite($handle, $callPath); fclose($handle); }