Skip to content

Commit 3adab6f

Browse files
committed
NGSTACK-983: remove unused defaults
1 parent 8592b4d commit 3adab6f

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

bundle/DependencyInjection/Configuration.php

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,12 @@ public function getConfigTreeBuilder(): TreeBuilder
3131
private function addShowExternalSiteaccessUrls(ArrayNodeDefinition $nodeDefinition): void
3232
{
3333
$nodeDefinition
34-
->treatFalseLike(['enabled' => false])
35-
->treatTrueLike(['enabled' => true])
36-
->treatNullLike(['enabled' => false])
37-
->children()
38-
->booleanNode('show_siteaccess_urls_outside_configured_content_tree_root')
39-
->defaultFalse()
40-
->info("Show Siteaccess URLs outside the configured Content tree root in administration's URL tab")
41-
->end()
42-
?->end();
34+
->children()
35+
->booleanNode('show_siteaccess_urls_outside_configured_content_tree_root')
36+
->defaultFalse()
37+
->info("Show Siteaccess URLs outside the configured Content tree root in administration's URL tab")
38+
->end()
39+
?->end();
4340
}
4441

4542
private function addQueuesSection(ArrayNodeDefinition $nodeDefinition): void

0 commit comments

Comments
 (0)