Skip to content

Commit e3202b2

Browse files
committed
Fixed mutually exclusive fields
1 parent 788c3d7 commit e3202b2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Configuration/Loader.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ public function getConfigTreeBuilder(): TreeBuilder
2020
/* @phpstan-ignore-next-line */
2121
$builder->getRootNode()
2222
->beforeNormalization()
23-
->always(mutuallyExclusiveFields('nonstandard', 'enclosure', 'escape'))
23+
->always(mutuallyExclusiveFields('nonstandard', 'enclosure'))
24+
->always(mutuallyExclusiveFields('nonstandard', 'escape'))
2425
->end()
2526
->children()
2627
->scalarNode('file_path')

0 commit comments

Comments
 (0)