Added "length" option and changed the parameters names

This commit is contained in:
Gregwar
2011-09-09 20:02:47 +02:00
parent 4a5b2a4c48
commit 4e59281467
5 changed files with 26 additions and 15 deletions

View File

@ -17,14 +17,11 @@ class Configuration implements ConfigurationInterface
$rootNode = $treeBuilder->root('gregwar_captcha', 'array');
$rootNode
->addDefaultsIfNotSet()
->children()
->arrayNode('image')
->addDefaultsIfNotSet()
->children()
->scalarNode('width')->defaultValue(120)->end()
->scalarNode('height')->defaultValue(40)->end()
->end()
->end()
->scalarNode('length')->defaultValue(5)->end()
->scalarNode('width')->defaultValue(120)->end()
->scalarNode('height')->defaultValue(40)->end()
->end()
;
return $treeBuilder;