Conditions | 1 |
Paths | 1 |
Total Lines | 18 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | public function getConfigTreeBuilder(): TreeBuilder |
||
16 | { |
||
17 | $treeBuilder = new TreeBuilder('odiseo_sylius_blog_plugin'); |
||
18 | |||
19 | $rootNode = $treeBuilder->getRootNode(); |
||
20 | |||
21 | $rootNode |
||
22 | ->children() |
||
23 | ->arrayNode('disqus') |
||
24 | ->addDefaultsIfNotSet() |
||
25 | ->children() |
||
26 | ->scalarNode('shortname')->defaultValue(null)->end() |
||
27 | ->end() |
||
28 | ->end() |
||
29 | ->end() |
||
30 | ; |
||
31 | |||
32 | return $treeBuilder; |
||
33 | } |
||
35 |