diff options
Diffstat (limited to 'src/Wallabag/CommentBundle/DependencyInjection/Configuration.php')
-rw-r--r-- | src/Wallabag/CommentBundle/DependencyInjection/Configuration.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/Wallabag/CommentBundle/DependencyInjection/Configuration.php b/src/Wallabag/CommentBundle/DependencyInjection/Configuration.php new file mode 100644 index 00000000..bc8d0615 --- /dev/null +++ b/src/Wallabag/CommentBundle/DependencyInjection/Configuration.php | |||
@@ -0,0 +1,20 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Wallabag\CommentBundle\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 | /** | ||
11 | * {@inheritdoc} | ||
12 | */ | ||
13 | public function getConfigTreeBuilder() | ||
14 | { | ||
15 | $treeBuilder = new TreeBuilder(); | ||
16 | $rootNode = $treeBuilder->root('wallabag_comment'); | ||
17 | |||
18 | return $treeBuilder; | ||
19 | } | ||
20 | } | ||