aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CommentBundle/DependencyInjection/Configuration.php
blob: bc8d0615cb6473a4b1aed8153aac465010603cfc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

namespace Wallabag\CommentBundle\DependencyInjection;

use Symfony\Component\Config\Definition\Builder\TreeBuilder;
use Symfony\Component\Config\Definition\ConfigurationInterface;

class Configuration implements ConfigurationInterface
{
    /**
     * {@inheritdoc}
     */
    public function getConfigTreeBuilder()
    {
        $treeBuilder = new TreeBuilder();
        $rootNode = $treeBuilder->root('wallabag_comment');

        return $treeBuilder;
    }
}