| Total Complexity | 1 |
| Total Lines | 11 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | final class Configuration implements ConfigurationInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * {@inheritdoc} |
||
| 14 | */ |
||
| 15 | public function getConfigTreeBuilder(): TreeBuilder |
||
| 16 | { |
||
| 17 | $treeBuilder = new TreeBuilder('gweb_deposit'); |
||
| 18 | if (\method_exists($treeBuilder, 'getRootNode')) { |
||
| 19 | $rootNode = $treeBuilder->getRootNode(); |
||
|
|
|||
| 20 | } else { |
||
| 21 | // BC layer for symfony/config 4.1 and older |
||
| 28 |