Skip to content

Commit 20a9e09

Browse files
[HttpKernel] fix parse error in DumpDataCollector
1 parent 842479a commit 20a9e09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DataCollector/DumpDataCollector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ public function getDumpsCount()
155155

156156
public function getDumps($format, $maxDepthLimit = -1, $maxItemsPerDepth = -1)
157157
{
158-
$data = fopen('php://memory' 'r+b');
158+
$data = fopen('php://memory', 'r+b');
159159

160160
if ('html' === $format) {
161161
$dumper = new HtmlDumper($data);

0 commit comments

Comments
 (0)