Skip to content

Commit 3901525

Browse files
author
Xavier Marchegay
committed
#141 Add a default value to the node "default_error_strategy"
1 parent c0a352c commit 3901525

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DependencyInjection/Configuration.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function getConfigTreeBuilder(): TreeBuilder
4040
// Default error strategy
4141
$definition->enumNode('default_error_strategy')
4242
->values([TaskConfiguration::STRATEGY_SKIP, TaskConfiguration::STRATEGY_STOP])
43-
->isRequired();
43+
->defaultValue(TaskConfiguration::STRATEGY_STOP);
4444

4545
$this->appendRootProcessConfigDefinition($definition);
4646
$this->appendRootTransformersConfigDefinition($definition);

0 commit comments

Comments
 (0)