change nested collection indentation from 2 to 4

This commit is contained in:
Joris de Wit 2011-09-22 14:48:21 -07:00
parent f611b3ee18
commit 6d8c4a82f3

View File

@ -44,7 +44,7 @@ class Dumper
$prefix,
$isAHash ? Inline::dump($key).':' : '-',
$willBeInlined ? ' ' : "\n",
$this->dump($value, $inline - 1, $willBeInlined ? 0 : $indent + 2)
$this->dump($value, $inline - 1, $willBeInlined ? 0 : $indent + 4)
).($willBeInlined ? "\n" : '');
}
}