Skip to content

Commit

Permalink
[HttpKernel] fix parse error in DumpDataCollector
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grekas committed Nov 18, 2014
1 parent 018fc15 commit 5526dd7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public function getDumpsCount()

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

if ('html' === $format) {
$dumper = new HtmlDumper($data);
Expand Down

0 comments on commit 5526dd7

Please sign in to comment.