]>
Commit | Line | Data |
---|---|---|
ff7b031d NL |
1 | <?php |
2 | ||
3 | namespace Wallabag\ImportBundle\DependencyInjection; | |
4 | ||
5 | use Symfony\Component\Config\Definition\Builder\TreeBuilder; | |
6 | use Symfony\Component\Config\Definition\ConfigurationInterface; | |
7 | ||
8 | class Configuration implements ConfigurationInterface | |
9 | { | |
10 | public function getConfigTreeBuilder() | |
11 | { | |
12 | $treeBuilder = new TreeBuilder(); | |
13 | $rootNode = $treeBuilder->root('wallabag_import'); | |
14 | ||
15 | return $treeBuilder; | |
16 | } | |
17 | } |