We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45a1e26 commit 1ae1d8eCopy full SHA for 1ae1d8e
CHANGELOG.md
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6
7
## [Unreleased]
8
+### Fixed
9
+ - Fix `processorOptions` in yaml configuration
10
11
## 2.0.1 - 2018-01-31
12
### Fixed
src/DependencyInjection/Configuration.php
@@ -107,7 +107,9 @@ public function getConfigTreeBuilder()
107
->prototype('scalar')->end()
108
->end()
109
->arrayNode('processorOptions')
110
- ->prototype('scalar')->end()
+ ->arrayPrototype()
111
+ ->prototype('scalar')->end()
112
+ ->end()
113
114
115
->end();
0 commit comments