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); }