Completed
Pull Request — master (#10)
by Tomáš
04:48 queued 01:50
created

Configuration::getConfigTreeBuilder()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 23
Code Lines 18

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 23
ccs 0
cts 20
cp 0
rs 9.0856
c 0
b 0
f 0
cc 1
eloc 18
nc 1
nop 0
crap 2
1
<?php
2
3
/*
4
 * This file is a part of Sculpin.
5
 *
6
 * (c) Dragonfly Development Inc.
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Symplify\PHP7_Sculpin\TwigBundle\DependencyInjection;
13
14
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
15
use Symfony\Component\Config\Definition\ConfigurationInterface;
16
17
final class Configuration implements ConfigurationInterface
18
{
19
    /**
20
     * {@inheritdoc}
21
     */
22
    public function getConfigTreeBuilder()
23
    {
24
        $treeBuilder = new TreeBuilder();
25
26
        $rootNode = $treeBuilder->root('sculpin_twig');
27
28
        $rootNode
29
            ->children()
30
                ->arrayNode('view_paths')
31
                    ->prototype('scalar')->end()
32
                ->end()
33
                ->arrayNode('source_view_paths')
34
                    ->defaultValue(['_views', '_layouts', '_includes', '_partials'])
35
                    ->prototype('scalar')->end()
36
                ->end()
37
                ->arrayNode('extensions')
38
                    ->defaultValue(['', 'twig', 'html', 'html.twig', 'twig.html'])
39
                    ->prototype('scalar')->end()
40
                ->end()
41
            ->end();
42
43
        return $treeBuilder;
44
    }
45
}
46