Skip to content

Commit 82bccf3

Browse files
authored
Adds ignore_exceptions and ignore_transactions options to Configurator
fixes: #710
1 parent 12cc81f commit 82bccf3

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/DependencyInjection/Configuration.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,14 @@ public function getConfigTreeBuilder(): TreeBuilder
157157
->normalizeKeys(false)
158158
->scalarPrototype()->end()
159159
->end()
160+
->arrayNode('ignore_exceptions')
161+
->scalarPrototype()->end()
162+
->beforeNormalization()->castToArray()->end()
163+
->end()
164+
->arrayNode('ignore_transactions')
165+
->scalarPrototype()->end()
166+
->beforeNormalization()->castToArray()->end()
167+
->end()
160168
->end()
161169
->end()
162170
->end();

0 commit comments

Comments
 (0)