[HttpKernel] fix parse error in DumpDataCollector

This commit is contained in:
Nicolas Grekas 2014-11-18 12:05:34 +01:00
parent 018fc153b9
commit 5526dd79c8

View File

@ -155,7 +155,7 @@ class DumpDataCollector extends DataCollector implements DataDumperInterface
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);