[VarDumper] increase debug.max_items to 2500

This commit is contained in:
Nicolas Grekas 2014-12-31 14:56:49 +01:00
parent c637df134f
commit c40569ccf1
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ class Configuration implements ConfigurationInterface
->integerNode('max_items')
->info('Max number of displayed items past the first level, -1 means no limit')
->min(-1)
->defaultValue(250)
->defaultValue(2500)
->end()
->integerNode('max_string_length')
->info('Max length of displayed strings, -1 means no limit')

View File

@ -80,7 +80,7 @@ abstract class AbstractCloner implements ClonerInterface
':stream-context' => 'Symfony\Component\VarDumper\Caster\ResourceCaster::castStreamContext',
);
protected $maxItems = 250;
protected $maxItems = 2500;
protected $maxString = -1;
private $casters = array();