Skip to content
Snippets Groups Projects
Commit c6e79d90 authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

config: set a default value for the dummy configuration

So the bundle doesn't fail "composer install" initially.
The config is just an example, so it's not very important.
parent 7da110e4
No related branches found
No related tags found
No related merge requests found
Pipeline #105828 passed
......@@ -15,8 +15,9 @@ class Configuration implements ConfigurationInterface
$treeBuilder->getRootNode()
->children()
->scalarNode('secret_token')->end()
->end()
->scalarNode('secret_token')
->defaultValue('42')
->end()
->end();
return $treeBuilder;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment