Skip to content

Commit

Permalink
Debug formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
brendt committed May 26, 2024
1 parent 246c7fe commit ecc4b88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Support/VarExport/Debug.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit ecc4b88

Please sign in to comment.