Skip to content

Commit f0a4f4d

Browse files
authored
Merge pull request #13 from php-etl/fix/mutually-exclusive-fields
Fixed mutually exclusive fields
2 parents 788c3d7 + e3202b2 commit f0a4f4d

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)