Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
49 | public function addConfiguration(ArrayNodeDefinition $builder) |
||
50 | { |
||
51 | $builder |
||
52 | ->children() |
||
53 | ->scalarNode('web_root') |
||
54 | ->defaultValue(SymfonyFramework::getContainerResolvableRootWebPath()) |
||
55 | ->cannotBeEmpty() |
||
56 | ->end() |
||
57 | ->scalarNode('cache_prefix') |
||
58 | ->defaultValue('media/cache') |
||
59 | ->cannotBeEmpty() |
||
60 | ->end() |
||
61 | ->end(); |
||
62 | } |
||
63 | } |
||
64 |