Total Complexity | 1 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | class DefaultsConfiguration extends AbstractConfiguration |
||
20 | { |
||
21 | use CacheDirectoryPathConfigurationTrait; |
||
22 | use LoggerConfigurationTrait; |
||
23 | use CharsetConfigurationTrait; |
||
24 | use FileLinkFormatConfigurationTrait; |
||
25 | |||
26 | /** |
||
27 | * @var string |
||
28 | */ |
||
29 | public const ROOT_KEY = 'defaults'; |
||
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | 19 | public function getArrayNodeDefinition(TreeBuilder $treeBuilder): ArrayNodeDefinition |
|
54 |